function postmark_menu in Postmark 7
Same name and namespace in other branches
- 6 postmark.module \postmark_menu()
Implementation of hook_menu().
File
- ./
postmark.module, line 18 - This module allows for the inclusion of Postmark as the native Drupal mail handler using the new Drupal mail system interface.
Code
function postmark_menu() {
$items['admin/config/system/postmark'] = array(
'title' => t('Postmark'),
'description' => 'Configure Postmark settings.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'postmark_settings_form',
),
'access callback' => 'postmark_settings_access',
'file' => 'postmark.admin.inc',
);
return $items;
}