You are here

function exif_custom_permission in EXIF Custom 7

Implements hook_permission().

File

./exif_custom.module, line 84
Primary hook implementations for EXIF Custom.

Code

function exif_custom_permission() {
  return array(
    'have default image metadata profile' => array(
      'title' => t('Have default image metadata profile'),
      'description' => t('Allow users to override teh site default image metadata profile.'),
    ),
    'view image metadata' => array(
      'title' => t('View image metadata'),
      'description' => t('See what image metdata import profiles have been created.'),
    ),
    'administer exif_custom' => array(
      'title' => 'Administer image metadata',
      'description' => t('Administer image metadata import profiles'),
    ),
  );
}