function mandrill_permission in Mandrill 7
Same name and namespace in other branches
- 7.2 mandrill.module \mandrill_permission()
Implements hook_permission().
File
- ./
mandrill.module, line 75 - 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,
),
);
}