You are here

function commons_notifications_menu_alter in Drupal Commons 6.2

Implementation of hook_menu_alter()

File

modules/features/commons_notifications/commons_notifications.module, line 22

Code

function commons_notifications_menu_alter(&$items) {

  // Move Broadcast menu tab to far right
  $items['node/%node/broadcast']['weight'] = 25;

  // Remove local task type from OG broadcast
  $items['node/%node/broadcast']['type'] = MENU_CALLBACK;
}