function theme_filter_tips_more_info

7.x filter.module theme_filter_tips_more_info()
6.x filter.module theme_filter_tips_more_info()

Returns HTML for a link to the more extensive filter tips.

Related topics

1 theme call to theme_filter_tips_more_info()
filter_process_format in drupal-7.x/modules/filter/filter.module
Expands an element into a base element with text format selector attached.

File

drupal-7.x/modules/filter/filter.module, line 1184
Framework for handling the filtering of content.

Code

function theme_filter_tips_more_info() {
  return '<p>' . l(t('More information about text formats'), 'filter/tips', array('attributes' => array('target' => '_blank'))) . '</p>';
}