function mandrill_reports_permission in Mandrill 7
Same name and namespace in other branches
- 7.2 modules/mandrill_reports/mandrill_reports.module \mandrill_reports_permission()
Implements hook_permission().
File
- modules/
mandrill_reports/ mandrill_reports.module, line 37 - Main module functions for mandrill_reports.
Code
function mandrill_reports_permission() {
return array(
'view mandrill reports' => array(
'title' => t('View Mandrill reports'),
'description' => t('View all Mandrill reports.'),
),
);
}