theme_help

  1. drupal
    1. 4.7
    2. 5
    3. 6 theme.inc
Versions
4.7 – 6 theme_help()

Return a themed help message.

Return value

a string containing the helptext for the current page.

Related topics

Code

includes/theme.inc, line 544

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