function help_menu

Implements hook_menu().

File

drupal/core/modules/help/help.module, line 11
Manages displaying online help.

Code

function help_menu() {
  $items['admin/help'] = array(
    'title' => 'Help',
    'description' => 'Reference for usage, configuration, and modules.',
    'route_name' => 'help_main',
    'weight' => 9,
  );
  $modules = module_implements('help');
  ksort($modules);
  foreach ($modules as $module) {
    $items['admin/help/' . $module] = array(
      'title' => $module,
      'route_name' => 'help_page',
      'type' => MENU_VISIBLE_IN_BREADCRUMB,
    );
  }
  return $items;
}