You are here

function ctools_flush_field_caches in Chaos Tool Suite (ctools) 7

Clear field related caches.

6 calls to ctools_flush_field_caches()
ctools_field_create_field in ./ctools.module
Implements hook_field_create_field().
ctools_field_create_instance in ./ctools.module
Implements hook_field_create_instance().
ctools_field_delete_field in ./ctools.module
Implements hook_field_delete_field().
ctools_field_delete_instance in ./ctools.module
Implements hook_field_delete_instance().
ctools_field_update_field in ./ctools.module
Implements hook_field_update_field().

... See full list

File

./ctools.module, line 1203
CTools primary module file.

Code

function ctools_flush_field_caches() {

  // Clear caches of 'Entity field' content type plugin.
  cache_clear_all('ctools_entity_field_content_type_content_types', 'cache');
}