function field_cache_flush

Implements hook_cache_flush().

Related topics

File

drupal/core/modules/field/field.module, line 472
Attach custom data fields to Drupal entities.

Code

function field_cache_flush() {

  // Request a flush of our cache table.
  return array(
    'field',
  );
}