function help_main
Same name and namespace in other branches
- 6.x drupal-6.x/modules/help/help.admin.inc \help_main()
Menu callback; prints a page listing a glossary of Drupal terminology.
2 string references to 'help_main'
- drupal-6.filled.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.filled.database.php - Filled installation of Drupal 6.17, for test purposes.
- help_menu in drupal-7.x/
modules/ help/ help.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ help/ help.admin.inc, line 11 - Admin page callbacks for the help module.
Código
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;
}