You are here

function variable_cache_clear in Variable 7.2

Same name and namespace in other branches
  1. 6 variable.module \variable_cache_clear()
  2. 7 variable.module \variable_cache_clear()

Clear cache

3 calls to variable_cache_clear()
variable_modules_disabled in ./variable.module
Implements hook_modules_disabled().
variable_modules_enabled in ./variable.module
Implements hook_modules_enabled().
variable_modules_uninstalled in ./variable.module
Implements hook_modules_uninstalled().

File

./variable.module, line 359
Variable API module

Code

function variable_cache_clear() {
  cache_clear_all('*', 'cache_variable', TRUE);
}