| 5 theme.inc | theme_more_help_link($url) |
| 6 theme.inc | theme_more_help_link( |
| 7 theme.inc | theme_more_help_link($variables) |
| 8 theme.inc | theme_more_help_link($variables) |
Returns HTML for a "more help" link.
Parameters
$variables: An associative array containing:
- url: The url for the link.
Related topics
1 theme call to theme_more_help_link()
File
- includes/
theme.inc, line 2035 - The theme system, which controls the output of Drupal.
Code
function theme_more_help_link($variables) {
return '<div class="more-help-link">' . l(t('More help'), $variables['url']) . '</div>';
}
Login or register to post comments