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

File

modules/filter/filter.module, line 1198

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.