1 filter_example.module | _filter_example_filter_time_tips($filter, $format, $long = FALSE) |
Filter tips callback for time filter.
The tips callback allows filters to provide help text to users during the content editing process. Short tips (optional) are provided on the content editing screen, while long tips (highly recommended) are provided on a separate linked page.
Related topics
File
- modules/
examples/ filter_example/ filter_example.module, line 184 - Hook implementations for the Filter Example module.
Code
function _filter_example_filter_time_tips($filter, $format, $long = FALSE) {
return t('<em><time /></em> is replaced with the current time.');
}