You are here

function iss_permission in Image Style Selector 7.2

Implements hook_permission().

File

./iss.module, line 53

Code

function iss_permission() {
  return array(
    'use iss' => array(
      'title' => t('Select image styles'),
      'description' => t('Select image styles using Image Style Selector.'),
      'restrict access' => FALSE,
    ),
    'administer iss settings' => array(
      'title' => t('Administer Image Style Selector'),
      'description' => t('Access and change the global Manual Crop settings.'),
      'restrict access' => FALSE,
    ),
  );
}