function mail_edit_permission in Mail Editor 7
Implements hook_permission().
Return value
array
File
- ./
mail_edit.module, line 23 - Mail Editor module.
Code
function mail_edit_permission() {
return array(
'administer mail templates' => array(
'description' => t('Change the templates used for creating mail messages to send to users.'),
'title' => t('Administer mail templates'),
),
);
}