You are here

function brilliant_gallery_permission in Brilliant Gallery 7.2

Same name and namespace in other branches
  1. 7 brilliant_gallery.module \brilliant_gallery_permission()

Implements hook_permission().

File

./brilliant_gallery.module, line 45

Code

function brilliant_gallery_permission() {
  return array(
    'access brilliant_gallery' => array(
      'title' => t('Access Brilliant Gallery'),
      'description' => t('Allow access to Brilliant Gallery.'),
    ),
    'administer brilliant_gallery' => array(
      'title' => t('Administer Brilliant Gallery'),
      'description' => t('Set roles that may access the settings of Brilliant Gallery.'),
    ),
  );
}