You are here

function imagecache_external_stage_file_proxy_excluded_paths_alter in Imagecache External 7.2

Implements hook_stage_file_proxy_excluded_paths_alter().

Prevent the Stage File Proxy module, if exists, to fetch external images.

File

./imagecache_external.module, line 564
Allows the usage of Image Styles on external images.

Code

function imagecache_external_stage_file_proxy_excluded_paths_alter(array &$excluded_paths, $uri) {
  $excluded_paths[] = '/' . variable_get('imagecache_directory', 'externals') . '/';
}