You are here

function mandrill_permission in Mandrill 7.2

Same name and namespace in other branches
  1. 7 mandrill.module \mandrill_permission()

Implements hook_permission().

File

./mandrill.module, line 94
Enables Drupal to send email directly through Mandrill.

Code

function mandrill_permission() {
  return array(
    'administer mandrill' => array(
      'title' => t('Administer Mandrill'),
      'description' => t('Perform administration tasks for the Mandrill email service.'),
      "restrict access" => TRUE,
    ),
  );
}