| Versions | |
|---|---|
| 4.7 – 6 | theme_more_help_link( |
| 7 | theme_more_help_link($variables) |
Returns HTML for a "more help" link.
$variables An associative array containing:
drupal/
<?php
function theme_more_help_link($variables) {
return '<div class="more-help-link">' . l(t('More help'), $variables['url']) . '</div>';
}
?>