function drupal_menu in Drupal 4
Same name and namespace in other branches
- 5 modules/drupal/drupal.module \drupal_menu()
Implementation of hook_menu().
File
- modules/
drupal.module, line 327 - Lets users log in using a Drupal ID and can notify a central server about your site.
Code
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;
}