You are here

function casetracker_notifications_menu in Case Tracker 7

Same name and namespace in other branches
  1. 6 casetracker_notifications/casetracker_notifications.module \casetracker_notifications_menu()

Implements hook_menu().

File

casetracker_notifications/casetracker_notifications.module, line 7

Code

function casetracker_notifications_menu() {

  // User pages, will be disabled by default
  $items['user/%user/notifications/casetracker'] = array(
    'type' => MENU_LOCAL_TASK,
    'access callback' => FALSE,
    'title' => 'Case Tracker',
    'page callback' => 'notifications_user_subscription_list_page',
    'page arguments' => array(
      'casetracker_project',
      1,
    ),
    'weight' => 10,
  );
  return $items;
}