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

Returns HTML for a "more help" link.

Parameters

$variables: An associative array containing:

  • url: The URL for the link.

Related topics

1 theme call to theme_more_help_link()
forum_help in modules/forum/forum.module
Implements hook_help().

File

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

Code

function theme_more_help_link($variables) {
  return '<div class="more-help-link">' . l(t('More help'), $variables['url']) . '</div>';
}