1 filter.pages.inc | filter_tips_long($format = NULL) |
Page callback: Displays a page with long filter tips.
Return value
string: An HTML-formatted string.
See also
File
- core/
modules/ filter/ filter.pages.inc, line 16 - User page callbacks for the Filter module.
Code
function filter_tips_long($format = NULL) {
if (!empty($format)) {
$output = theme('filter_tips', array(
'tips' => _filter_tips($format->format, TRUE),
'long' => TRUE
));
}
else {
$output = theme('filter_tips', array(
'tips' => _filter_tips(-1, TRUE),
'long' => TRUE
));
}
return $output;
}