You are here

function imageinfo_cache_hook_info in Imageinfo Cache 7.3

Implements hook_hook_info().

File

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

Code

function imageinfo_cache_hook_info() {

  // List of hooks that can be inside of *.imageinfocache.inc files.
  $imageinfo_cache_hooks = array(
    'image_imageinfo_cache_save',
  );
  $hooks = array();
  foreach ($imageinfo_cache_hooks as $hook) {
    $hooks[$hook] = array(
      'group' => 'imageinfocache',
    );
  }
  return $hooks;
}