You are here

function casetracker_mail_menu in Case Tracker 5

Implementation of hook_menu().

File

./casetracker_mail.module, line 21
Enables mail sending and Mailhandler integration for Case Tracker.

Code

function casetracker_mail_menu($may_cache) {
  $items = array();
  if ($may_cache) {
    $items[] = array(
      'access' => user_access('administer case tracker'),
      'callback' => 'drupal_get_form',
      'callback arguments' => 'casetracker_mail_settings',
      'description' => t('Configure the various Case Tracker mail options with these settings.'),
      'path' => 'admin/settings/casetracker/mail',
      'title' => t('CT Mail'),
      'type' => MENU_LOCAL_TASK,
    );
  }
  return $items;
}