filter_tips_long
- Versions
- 4.6 – 7
filter_tips_long()
Menu callback; show a page with long filter tips.
Code
modules/filter.module, line 772
<?php
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);
}
print theme('page', $output);
}
?>Login or register to post comments 