'Help', '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), 'type' => MENU_CALLBACK, 'file' => 'help.admin.inc', ); } return $items; } /** * Implementation of hook_help(). */ function help_help($path, $arg) { switch ($path) { case 'admin/help': $output = t('

This guide explains what the various modules in Drupal do and how to configure them. Additionally, you will find a glossary of basic Drupal terminology to help get you started.

It is not a substitute for the Drupal handbook available online and should be used in conjunction with it. The online reference handbook might be more up-to-date and has helpful user-contributed comments. It is your definitive reference point for all Drupal documentation.

', array('@Drupal' => 'http://drupal.org', '@handbook' => 'http://drupal.org/handbook')); return $output; case 'admin/help#help': $output = '

'. t('The help module displays context sensitive help information. Users can learn how to use modules and accomplish tasks quicker with less errors by clicking on links in provided by the help module.') .'

'; $output .= t("

Modules can make documentation available to other modules with this module. All user help should be presented using this module. Some examples of help:

", array('@help' => url('admin/help'))); $output .= '

'. t('For more information please read the configuration and customization handbook Help page.', array('@help' => 'http://drupal.org/handbook/modules/help/')) .'

'; return $output; } }