Definition

theme_help()
drupal/includes/theme.inc, line 543

Description

Return a themed help message.

Return value

a string containing the helptext for the current page.

Related topics

Namesort iconDescription
Themeable functionsFunctions that display HTML, and which can be customized by themes.

Code

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