You are here

function variable_cache_get in Variable 6

Get value from variable cache

1 call to variable_cache_get()
variable_info in ./variable.module
Get variable information

File

./variable.module, line 219
Variable API module

Code

function variable_cache_get($name, $langcode = 'default') {
  return cache_get($name . ':' . $langcode, 'variable_cache');
}