function bugherd_permission in BugHerd 6
Same name and namespace in other branches
- 7 bugherd.module \bugherd_permission()
Implements hook_permission().
1 call to bugherd_permission()
- bugherd_perm in ./
bugherd.module - Implements hook_perm().
File
- ./
bugherd.module, line 63 - 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;
}