You are here

function mandrill_reports_permission in Mandrill 7.2

Same name and namespace in other branches
  1. 7 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.'),
    ),
  );
}