You are here

function vars_flush_caches in Variable API 7

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

Implements hook_flush_caches().

File

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

Code

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