theme_help
Definition
theme_help()
includes/theme.inc, line 637
Description
Return a themed help message.
Return value
a string containing the helptext for the current page.
Related topics
| Name | Description |
|---|---|
| Themeable functions | Functions that display HTML, and which can be customized by themes. |
Code
<?php
function theme_help() {
if ($help = menu_get_active_help()) {
return '<div class="help">'. $help .'</div>';
}
}
?> 