function postmark_permission in Postmark 7
Implementation of hook_permission().
File
- ./
postmark.module, line 33 - This module allows for the inclusion of Postmark as the native Drupal mail handler using the new Drupal mail system interface.
Code
function postmark_permission() {
return array(
'administer postmark' => array(
'title' => t('Administer Postmark'),
'description' => t('Perform administration tasks for Postmark.'),
),
);
}