| 5 filter.module | filter_format_allowcache($format) |
| 6 filter.module | filter_format_allowcache( |
| 7 filter.module | filter_format_allowcache($format_id) |
| 8 filter.module | filter_format_allowcache($format_id) |
Check if text in a certain text format is allowed to be cached.
This function can be used to check whether the result of the filtering process can be cached. A text format may allow caching depending on the filters enabled.
Parameters
$format_id: The text format ID to check.
Return value
TRUE if the given text format allows caching, FALSE otherwise.
2 calls to filter_format_allowcache()
File
- modules/
filter/ filter.module, line 609 - Framework for handling filtering of content.
Code
function filter_format_allowcache($format_id) {
$format = filter_format_load($format_id);
return !empty($format->cache);
}
Login or register to post comments