You are here

function imagecache_external_perm in Imagecache External 6.2

Same name and namespace in other branches
  1. 6 imagecache_external.module \imagecache_external_perm()

Implementation of hook_perm().

File

./imagecache_external.module, line 50

Code

function imagecache_external_perm() {
  return array(
    'View external images',
    'Fetch external images',
    'Administer imagecache external',
    'Bypass black/white list',
  );
}