| 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 code that emits the 'more help'-link.
Related topics
File
- includes/
theme.inc, line 888 - The theme system, which controls the output of Drupal.
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>';
}
Login or register to post comments