theme_more_help_link($url)
drupal/includes/theme.inc, line 1570
Returns code that emits the 'more help'-link.
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
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>';
}