drupal_menu

  1. drupal
    1. 4.7
    2. 5 drupal.module
Versions
4.7 – 5 drupal_menu($may_cache)

Implementation of hook_menu().

Code

modules/drupal.module, line 328

<?php
function drupal_menu($may_cache) {
  $items = array();
  if ($may_cache) {
    if (variable_get('drupal_authentication_service', 0)) {
      $items[] = array(
        'path' => 'drupal', 
        'title' => t('Drupal'), 
        'callback' => 'drupal_page_help', 
        'access' => TRUE, 
        'type' => MENU_SUGGESTED_ITEM,
      );
    }
  }
  return $items;
}
?>