Full ELMS Learning Network documentation
function theme_more_help_link
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).cis7 theme.inc | theme_more_help_link($variables) |
cle7 theme.inc | theme_more_help_link($variables) |
elmsmedia7 theme.inc | theme_more_help_link($variables) |
icor7 theme.inc | theme_more_help_link($variables) |
meedjum_blog7 theme.inc | theme_more_help_link($variables) |
mooc7 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()
- forum_help in modules/
forum/ forum.module - Implements hook_help().
2 string references to the theme hook from theme_more_help_link()
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- drupal_common_theme in includes/
common.inc - Provides theme registration for themes across .inc files.
- forum_help in modules/
forum/ forum.module - Implements hook_help().
File
- includes/
theme.inc, line 2146 - 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>';
}