| 5 filter.module | filter_tips_long() |
| 6 filter.pages.inc | filter_tips_long() |
| 7 filter.pages.inc | filter_tips_long() |
| 8 filter.pages.inc | filter_tips_long() |
Menu callback; show a page with long filter tips.
1 string reference to 'filter_tips_long'
File
- modules/
filter/ filter.module, line 888 - Framework for handling filtering of content.
Code
function filter_tips_long() {
$format = arg(2);
if ($format) {
$output = theme('filter_tips', _filter_tips($format, TRUE), TRUE);
}
else {
$output = theme('filter_tips', _filter_tips(-1, TRUE), TRUE);
}
return $output;
}
Login or register to post comments