function 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/core/modules/filter/filter.module
Expands an element into a base element with text format selector attached.

File

drupal/core/modules/filter/filter.module, line 1269
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>';
}