You are here

function resp_img_url_outbound_alter in Responsive images and styles 7

Alter all links for things like colorbox.

File

./resp_img.module, line 265

Code

function resp_img_url_outbound_alter(&$path, &$options, $original_path) {
  if (!preg_match('|^/?admin/|', $path)) {
    $path = resp_img_replace_suffix($path);
  }
}