| 7 filter.module | _filter_autop_tips($filter, $format, $long = FALSE) |
| 8 filter.module | _filter_autop_tips($filter, $format, $long = FALSE) |
Filter tips callback for auto-paragraph filter.
Related topics
2 string references to '_filter_autop_tips'
File
- modules/
filter/ filter.module, line 1667 - Framework for handling filtering of content.
Code
function _filter_autop_tips($filter, $format, $long = FALSE) {
if ($long) {
return t('Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.');
}
else {
return t('Lines and paragraphs break automatically.');
}
}
Login or register to post comments