function theme_more_help_link

Same name and namespace in other branches
  1. 7.x drupal-7.x/includes/theme.inc \theme_more_help_link()

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

Related topics

Archivo

drupal-6.x/includes/theme.inc, line 1584
The theme system, which controls the output of Drupal.

Código

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