You are here

function imageinfo_cache_hooks in Imageinfo Cache 7.3

Output an array of modules that use imageinfo cache hooks.

Return value

array Array of hooks implemented.

1 call to imageinfo_cache_hooks()
imageinfo_cache_admin_settings_form in ./imageinfo_cache.admin.inc
Form builder; Configure advagg settings.

File

./imageinfo_cache.module, line 722
Imageinfo Cache module.

Code

function imageinfo_cache_hooks() {
  $hooks = array(
    'imageinfo_cache_styles_alter',
    'imageinfo_cache_context_effect_alter',
    'imageinfo_cache_detect_image_widget_alter',
    'image_imageinfo_cache_save',
  );
  $hooks_implemented = array();
  foreach ($hooks as $hook) {
    $hooks_implemented[$hook] = module_implements($hook);
  }
  return $hooks_implemented;
}