function _autofloat_filter_tips in AutoFloat 7
Same name and namespace in other branches
- 7.2 autofloat.module \_autofloat_filter_tips()
Returns the filter information for the filter help page.
1 string reference to '_autofloat_filter_tips'
- autofloat_filter_info in ./
autofloat.module - Implements hook_filter_info().
File
- ./
autofloat.module, line 61 - Autofloat module: A filter that floats images left and right automatically.
Code
function _autofloat_filter_tips($filter, $format, $long = TRUE) {
$output = t('Images will float left and right unless escaped with a class "nofloat".');
return $output;
}