function spoiler_filter_tips in Spoiler 6
Same name and namespace in other branches
- 5 spoiler.module \spoiler_filter_tips()
Implementation of hook_filter_tips().
File
- ./
spoiler.module, line 56 - Spoiler module: This module allows users to hide potential "spoiler" content by inserting them between [spoiler][/spoiler] tags. These tags will be converted to HTML by this filter. If JavaScript is available, then a button will be presented…
Code
function spoiler_filter_tips($delta, $format, $long = FALSE) {
return t('Potential spoilers can be hidden between [spoiler][/spoiler] tags to hide them by default.');
}