1 field.module field_cache_clear()

Clear the field info and field data caches.

Related topics

File

core/modules/field/field.module, line 1026
Attach custom data fields to Backdrop entities.

Code

function field_cache_clear() {
  cache('field')->flush();
  field_info_cache_clear();
}