| Versionen | |
|---|---|
| drupal6 | theme_help() |
Return a themed help message.
a string containing the helptext for the current page.
includes/
<?php
function theme_help() {
if ($help = menu_get_active_help()) {
return '<div class="help">' . $help . '</div>';
}
}
?>
Kommentare
Kommentar hinzufügen