You are here

function mail_safety_permission in Mail Safety 7.2

Same name and namespace in other branches
  1. 7 mail_safety.module \mail_safety_permission()

Implements hook_permission().

File

./mail_safety.module, line 126

Code

function mail_safety_permission() {
  return array(
    'use mail safety dashboard' => array(
      'description' => t('Use the Mail Safety dashboard.'),
      'title' => t('Use Mail Safety dashboard'),
      'restrict access' => TRUE,
    ),
    'administer mail safety' => array(
      'title' => t('Administer Mail Safety'),
      'description' => t('Enable and configure Mail Safety'),
      'restrict access' => TRUE,
    ),
  );
}