theme_filter_tips_more_info

Definition

theme_filter_tips_more_info()
drupal/modules/filter/filter.module, line 592

Description

Format a link to the more extensive filter tips.

Related topics

Namesort iconDescription
Default theme implementationsFunctions and templates that present output to the user, and can be implemented by themes.

Code

<?php
function theme_filter_tips_more_info() {
  return '<p>'. l(t('More information about formatting options'), 'filter/tips') .'</p>';
}
?>