You are here

function brilliant_gallery_permission in Brilliant Gallery 7

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

Valid permissions for this module

Return value

array An array of valid permissions for the onthisdate module

File

./brilliant_gallery.module, line 48

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.'),
    ),
  );
}