theme_more_help_link

Definition

theme_more_help_link($url)
drupal/includes/theme.inc, line 1570

Description

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

Related topics

Namesort iconDescription
Default theme implementationsFunctions and templates that present output to the user, and can be implemented by themes.

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