| Versions | |
|---|---|
| 4.7 – 6 | theme_more_help_link( |
| 7 | theme_more_help_link($variables) |
Returns code that emits the 'more help'-link.
includes/
<?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>';
}
?>