You are here

function imagecache_external_permission in Imagecache External 7

Same name and namespace in other branches
  1. 7.2 imagecache_external.module \imagecache_external_permission()

Implements hook_permission().

File

./imagecache_external.module, line 50

Code

function imagecache_external_permission() {
  return array(
    'View external images' => array(
      'title' => t('View external images'),
      'description' => t('TODO Add a description for \'View external images\''),
    ),
    'Fetch external images' => array(
      'title' => t('Fetch external images'),
      'description' => t('TODO Add a description for \'Fetch external images\''),
    ),
    'Administer imagecache external' => array(
      'title' => t('Administer imagecache external'),
      'description' => t('TODO Add a description for \'Administer imagecache external\''),
    ),
    'Bypass black/white list' => array(
      'title' => t('Bypass black/white list'),
      'description' => t('TODO Add a description for \'Bypass black/white list\''),
    ),
  );
}