theme_more_help_link

Definition

theme_more_help_link($url)
includes/theme.inc, line 973

Description

Returns code that emits the 'more help'-link.

Related topics

Namesort iconDescription
Themeable functionsFunctions that display HTML, and which can be customized by themes.

Code

<?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>';
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.