function theme_help

6.x theme.inc theme_help()

Return a themed help message.

Return value

a string containing the helptext for the current page.

Related topics

2 theme calls to theme_help()
chameleon_page in drupal-6.x/themes/chameleon/chameleon.theme
template_preprocess_page in drupal-6.x/includes/theme.inc
Process variables for page.tpl.php

File

drupal-6.x/includes/theme.inc, line 1312
The theme system, which controls the output of Drupal.

Code

function theme_help() {
  if ($help = menu_get_active_help()) {
    return '<div class="help">' . $help . '</div>';
  }
}