theme_filter_tips_more_info
Definition
theme_filter_tips_more_info()
modules/filter/filter.module, line 585
Description
Format a link to the more extensive filter tips.
Related topics
| Name | Description |
|---|---|
| Default theme implementations | Functions 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>';
}
?> 