function menu_get_active_help

7.x menu.inc menu_get_active_help()
6.x menu.inc menu_get_active_help()

Returns the help associated with the active menu item.

Related topics

2 calls to menu_get_active_help()
chameleon_help in drupal-6.x/themes/chameleon/chameleon.theme
theme_help in drupal-6.x/includes/theme.inc
Return a themed help message.

File

drupal-6.x/includes/menu.inc, line 1182
API for the Drupal menu system.

Code

function menu_get_active_help() {
  $output = '';
  $router_path = menu_tab_root_path();
  // We will always have a path unless we are on a 403 or 404.
  if (!$router_path) {
    return '';
  }

  $arg = drupal_help_arg(arg(NULL));
  $empty_arg = drupal_help_arg();

  foreach (module_list() as $name) {
    if (module_hook($name, 'help')) {
      // Lookup help for this path.
      if ($help = module_invoke($name, 'help', $router_path, $arg)) {
        $output .= $help . "\n";
      }
      // Add "more help" link on admin pages if the module provides a
      // standalone help page.
      if ($arg[0] == "admin" && module_exists('help') && module_invoke($name, 'help', 'admin/help#' . $arg[2], $empty_arg) && $help) {
        $output .= theme("more_help_link", url('admin/help/' . $arg[2]));
      }
    }
  }
  return $output;
}