You are here

function stage_file_proxy_stage_file_proxy_excluded_paths_alter in Stage File Proxy 7

Implements hook_stage_file_proxy_excluded_paths_alter().

@todo: Move this to the advagg module.

File

./stage_file_proxy.module, line 378
Stage File Proxy Module.

Code

function stage_file_proxy_stage_file_proxy_excluded_paths_alter(&$excluded_paths) {

  // If this is a advagg path, ignore it.
  if (module_exists('advagg')) {
    $excluded_paths[] = '/advagg_';
  }
}