function mandrill_activity_permission in Mandrill 7
Same name and namespace in other branches
- 7.2 modules/mandrill_activity/mandrill_activity.module \mandrill_activity_permission()
Implements hook_permission().
File
- modules/
mandrill_activity/ mandrill_activity.module, line 186 - Main module functions for mandrill_activity.
Code
function mandrill_activity_permission() {
$return = array();
$return['access mandrill activity'] = array(
'title' => t('Access Mandrill activity'),
'description' => t('View own Mandrill activity history.'),
);
$return['administer mandrill activity'] = array(
'title' => t('Administer Mandrill activity entities'),
'description' => t('Add, Delete, and Configure Mandrill Activity entity settings.'),
);
return $return;
}