You are here

function imageinfo_cache_imagecache_image_flush in Imageinfo Cache 6.2

Same name and namespace in other branches
  1. 6 imageinfo_cache.module \imageinfo_cache_imagecache_image_flush()

Implements hook_imagecache_image_flush().

File

./imageinfo_cache.module, line 600
Cache image info for theme_imagecache & theme_imagefield_image.

Code

function imageinfo_cache_imagecache_image_flush($filepath, $preset, $path) {
  $cid = 'imagecache_' . $preset['presetname'] . md5($path);
  cache_clear_all($cid, 'cache_imageinfo');
}