Same name and namespace in other branches
  1. 4.7.x includes/theme.inc \theme_more_help_link()
  2. 5.x includes/theme.inc \theme_more_help_link()
  3. 6.x includes/theme.inc \theme_more_help_link()
  4. 7.x includes/theme.inc \theme_more_help_link()

Related topics

1 theme call to theme_more_help_link()
menu_get_active_help in includes/menu.inc
Returns the help associated with the active menu item.

File

includes/theme.inc, line 803
The theme system, which controls the output of Drupal.

Code

function theme_more_help_link($url) {
  return '<div class="more-help-link">' . t('[<a href="%link">more help...</a>]', array(
    '%link' => check_url($url),
  )) . '</div>';
}