function system_cache_flush

Implements hook_cache_flush().

File

drupal/core/modules/system/system.module, line 3483
Configuration system that lets administrators modify the workings of the site.

Code

function system_cache_flush() {

  // Do NOT flush the 'form' cache bin to retain in-progress form submissions.
  return array(
    'bootstrap',
    'config',
    'cache',
    'page',
    'path',
  );
}