You are here

function bugherd_permission in BugHerd 7

Same name and namespace in other branches
  1. 6 bugherd.module \bugherd_permission()

Implements hook_permissions().

File

./bugherd.module, line 86
BugHerd module functions.

Code

function bugherd_permission() {
  $perms = array();
  $perms['administer bugherd'] = array(
    'title' => t('Administer BugHerd module'),
    'description' => t('Perform administration tasks for BugHerd.'),
  );
  $perms['access bugherd'] = array(
    'title' => t('Access BugHerd'),
    'description' => t('Log issues via the on page issue submission form.'),
  );
  return $perms;
}