function uc_notify_menu in Ubercart 5
Implementation of hook_menu().
File
- uc_notify/
uc_notify.module, line 17 - Handles configuration and execution of email notifications.
Code
function uc_notify_menu($may_cache) {
if ($may_cache) {
$items[] = array(
'path' => 'admin/store/settings/notify',
'title' => t('Notification settings'),
'access' => user_access('configure notifications'),
'description' => t('Configure the notification settings.'),
'callback' => 'uc_notify_settings_overview',
'type' => MENU_NORMAL_ITEM,
);
$items[] = array(
'path' => 'admin/store/settings/notify/overview',
'title' => t('Overview'),
'access' => user_access('administer store'),
'description' => t('View the notification settings.'),
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10,
);
$items[] = array(
'path' => 'admin/store/settings/notify/edit',
'title' => t('Edit'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'uc_notify_settings_form',
),
'access' => user_access('administer store'),
'description' => t('Edit the notification settings.'),
'type' => MENU_LOCAL_TASK,
'weight' => -5,
);
$items[] = array(
'path' => 'admin/store/settings/notify/edit/general',
'title' => t('General settings'),
'access' => user_access('administer store'),
'description' => t('Edit the general notification settings.'),
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10,
);
$items[] = array(
'path' => 'admin/store/settings/notify/edit/checkout',
'title' => t('Checkout'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'uc_notify_checkout_form',
),
'access' => user_access('administer store'),
'description' => t('Edit the checkout notification settings.'),
'type' => MENU_LOCAL_TASK,
'weight' => -5,
);
$items[] = array(
'path' => 'admin/store/settings/notify/edit/update',
'title' => t('Order update'),
'access' => user_access('administer store'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'uc_notify_order_update_form',
),
'description' => t('Edit the order update notification settings.'),
'type' => MENU_LOCAL_TASK,
'weight' => -3,
);
}
return $items;
}