function theme_help in Drupal 6
Same name and namespace in other branches
- 4 includes/theme.inc \theme_help()
- 5 includes/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 themes/
chameleon/ chameleon.theme - template_preprocess_page in includes/
theme.inc - Process variables for page.tpl.php
File
- 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>';
}
}