You are here

function imagezoomer_permission in Image Zoomer 7

Implements hook_permission().

File

./imagezoomer.module, line 10
Integrate Powerzoomer / Featuredzoom jquery plugins to Drupal 7

Code

function imagezoomer_permission() {
  return array(
    'administer imagezoomer' => array(
      'title' => t('Administer image zoomer'),
      'description' => t('Configure the Image zoomer settings.'),
    ),
  );
}