function imageinfo_cache_imagecache_preset_flush in Imageinfo Cache 6
Same name and namespace in other branches
- 6.2 imageinfo_cache.module \imageinfo_cache_imagecache_preset_flush()
Implementation of hook_imagecache_preset_flush
File
- ./
imageinfo_cache.module, line 561 - 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);
}