You are here

function bootstrap_menu_items_menu in Bootstrap menu items 7

Same name and namespace in other branches
  1. 7.3 bootstrap_menu_items.module \bootstrap_menu_items_menu()

Implements hook_menu().

File

./bootstrap_menu_items.module, line 13
Drupal Module: Bootstrap menu items

Code

function bootstrap_menu_items_menu() {
  $items['<header>'] = array(
    'page callback' => 'drupal_not_found',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  $items['<separator>'] = array(
    'page callback' => 'drupal_not_found',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  return $items;
}