function mail_safety_permission in Mail Safety 7
Same name and namespace in other branches
- 7.2 mail_safety.module \mail_safety_permission()
Implements hook_permission().
File
- ./
mail_safety.module, line 133 - The core Mail Safety module file
Code
function mail_safety_permission() {
return array(
'use mail safety dashboard' => array(
'description' => t('Use the Mail Safety dashboard.'),
'title' => t('Use Mail Safety dashboard'),
'restrict access' => TRUE,
),
'administer mail safety' => array(
'title' => t('Administer Mail Safety'),
'description' => t('Enable and configure Mail Safety'),
'restrict access' => TRUE,
),
);
}