function config_test_cache_flush

Implements hook_cache_flush().

File

drupal/core/modules/config/tests/config_test/config_test.module, line 195
Provides Config module hook implementations for testing purposes.

Code

function config_test_cache_flush() {

  // Set a global value we can check in test code.
  $GLOBALS['hook_cache_flush'] = __FUNCTION__;
  return array();
}