function redhen_note_permission in RedHen CRM 7
Implements hook_permission().
File
- modules/
redhen_note/ redhen_note.module, line 170 - Redhen Notes main module
Code
function redhen_note_permission() {
return array(
'administer redhen notes' => array(
'title' => t('Administer Redhen Notes'),
'description' => t('Perform administration tasks and manage the structure of RedHen Notes.'),
),
'manage redhen notes' => array(
'title' => t('Manage Redhen Notes'),
'description' => t('Create, update or delete Redhen Notes.'),
),
'access redhen notes' => array(
'title' => t('Access Redhen Notes'),
'description' => t('View for Redhen Notes.'),
),
);
}