function help_main

help_main()

Menu callback; prints a page listing a glossary of Drupal terminology.

File

modules/help/help.admin.inc, line 11
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;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!help!help.admin.inc/function/help_main/7.x