You are here

function postmark_menu in Postmark 6

Same name and namespace in other branches
  1. 7 postmark.module \postmark_menu()

Implementation of hook_menu().

File

./postmark.module, line 19
This module allows for the inclusion of Postmark as the native Drupal mail handler, and uses drupal_mail_wrapper to send emails from Drupal using Postmark

Code

function postmark_menu() {
  $items['admin/settings/postmark'] = array(
    'title' => t('Postmark Settings'),
    '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;
}