theme_more_help_link

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

Returns code that emits the 'more help'-link.

Related topics

Code

includes/theme.inc, line 889

<?php
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>';
}
?>