function redhen_permission in RedHen CRM 7
Implements hook_permission().
File
- ./
redhen.module, line 104 - Defines basic functionality common to all parts of the Redhen CRM.
Code
function redhen_permission() {
return array(
'administer redhen' => array(
'title' => t('Administer RedHen'),
'description' => t('Perform administration tasks for my redhen.'),
),
'access redhen' => array(
'title' => t('Access RedHen'),
'description' => t('Access RedHen CRM.'),
),
);
}