function help_main

Page callback: Prints a page listing a glossary of Drupal terminology.

See also

help_menu()

1 string reference to 'help_main'
help_menu in drupal/core/modules/help/help.module
Implements hook_menu().

File

drupal/core/modules/help/help.admin.inc, line 13
Admin page callbacks for the help module.

Code

function help_main() {

  // Add CSS.
  drupal_add_css(drupal_get_path('module', 'help') . '/help.css');
  $output = '<h2>' . t('Help topics') . '</h2><p>' . t('Help is available on the following items:') . '</p>' . help_links_as_list();
  return $output;
}