You are here

function imageinfo_cache_imagecache_preset_flush in Imageinfo Cache 6.2

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

Implements hook_imagecache_preset_flush().

File

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

Code

function imageinfo_cache_imagecache_preset_flush($presetdir, $preset) {
  $cid = 'imagecache_' . $preset['presetname'];
  cache_clear_all($cid, 'cache_imageinfo', TRUE);
}