You are here

function mandrill_template_permission in Mandrill 7.2

Same name and namespace in other branches
  1. 7 modules/mandrill_template/mandrill_template.module \mandrill_template_permission()

Implements hook_permission().

File

modules/mandrill_template/mandrill_template.module, line 55
Enables Drupal to send email using Mandrill's template system.

Code

function mandrill_template_permission() {
  return array(
    'configure mandrill templates' => array(
      'title' => t('Configure Mandrill Templates'),
      'description' => t('Select & configure which Mandrill Templates to use for messages going through Mandrill.'),
      "restrict access" => FALSE,
    ),
  );
}