You are here

function filter_formats_reset in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/filter/filter.module \filter_formats_reset()

Resets the text format caches.

See also

filter_formats()

8 calls to filter_formats_reset()
FilterAdminTest::testFilterAdmin in core/modules/filter/src/Tests/FilterAdminTest.php
Tests filter administration functionality.
FilterDefaultFormatTest::resetFilterCaches in core/modules/filter/src/Tests/FilterDefaultFormatTest.php
Rebuilds text format and permission caches in the thread running the tests.
FilterFormat::disable in core/modules/filter/src/Entity/FilterFormat.php
Disables the configuration entity.
FilterFormat::postSave in core/modules/filter/src/Entity/FilterFormat.php
Acts on a saved entity before the insert or update hook is invoked.
FilterFormatAccessTest::resetFilterCaches in core/modules/filter/src/Tests/FilterFormatAccessTest.php
Rebuilds text format and permission caches in the thread running the tests.

... See full list

File

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

Code

function filter_formats_reset() {
  drupal_static_reset('filter_formats');
}