theme_more_help_link

  1. drupal
    1. 4.7 theme.inc
    2. 5 theme.inc
    3. 6
    4. 7
Versions
4.7 – 6 theme_more_help_link($url)
7 theme_more_help_link($variables)

Returns HTML for a "more help" link.

Parameters

$variables An associative array containing:

  • url: The url for the link.

Related topics

Code

drupal/includes/theme.inc, line 1856

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