'Help', 'description' => 'Reference for usage, configuration, and modules.', 'page callback' => 'help_main', 'access arguments' => array('access administration pages'), 'weight' => 9, 'file' => 'help.admin.inc', ); foreach (module_implements('help', TRUE) as $module) { $items['admin/help/' . $module] = array( 'title' => $module, 'page callback' => 'help_page', 'page arguments' => array(2), 'access arguments' => array('access administration pages'), 'type' => MENU_VISIBLE_IN_BREADCRUMB, 'file' => 'help.admin.inc', ); } return $items; } /** * Implements hook_help(). */ function help_help($path, $arg) { switch ($path) { case 'admin/help': $output = '
' . t('Follow these steps to set up and start using your website:') . '
'; $output .= '' . t('For more information, refer to the specific topics listed in the next section or to the online Drupal handbooks. You may also post at the Drupal forum or view the wide range of other support options available.', array('@help' => url('admin/help'), '@handbook' => 'http://drupal.org/documentation', '@forum' => 'http://drupal.org/forum', '@support' => 'http://drupal.org/support')) . '
'; return $output; case 'admin/help#help': $output = ''; $output .= '' . t('The Help module provides Help reference pages and context-sensitive advice to guide you through the use and configuration of modules. It is a starting point for the online Drupal handbooks. The handbooks contain more extensive and up-to-date information, are annotated with user-contributed comments, and serve as the definitive reference point for all Drupal documentation. For more information, see the online handbook entry for the Help module.', array('@help' => 'http://drupal.org/documentation/modules/help/', '@handbook' => 'http://drupal.org/documentation', '@help-page' => url('admin/help'))) . '
'; $output .= '