function imagecache_perm in ImageCache 5
Same name and namespace in other branches
- 5.2 imagecache.module \imagecache_perm()
- 6.2 imagecache.module \imagecache_perm()
Implementation of hook_perm().
File
- ./
imagecache.module, line 23 - Dynamic image resizer and image cacher.
Code
function imagecache_perm() {
return array(
'administer imagecache',
'flush imagecache',
);
}