function filter_format_allowcache

filter_format_allowcache($format_id)

Checks if the 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.

File

modules/filter/filter.module, line 649
Framework for handling the filtering of content.

Code

function filter_format_allowcache($format_id) {
  $format = filter_format_load($format_id);
  return !empty($format->cache);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!filter!filter.module/function/filter_format_allowcache/7.x