You are here

function imagecache_perm in ImageCache 5

Same name and namespace in other branches
  1. 5.2 imagecache.module \imagecache_perm()
  2. 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',
  );
}