theme_help()
drupal/includes/theme.inc, line 1233
Return a themed help message.
a string containing the helptext for the current page.
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
function theme_help() {
if ($help = menu_get_active_help()) {
return '<div class="help">' . $help . '</div>';
}
}