You are here

function vars_flush_caches in Variable API 6.2

Same name and namespace in other branches
  1. 6 vars.module \vars_flush_caches()
  2. 7.2 vars.module \vars_flush_caches()
  3. 7 vars.module \vars_flush_caches()

Implements hook_flush_caches().

File

./vars.module, line 576
Implement an API to handle persistent variables.

Code

function vars_flush_caches() {
  return array(
    'cache_vars',
  );
}