variable_get($name, $default = NULL)
drupal/includes/bootstrap.inc, line 759
Return a persistent variable.
@see variable_del(), variable_set()
$name The name of the variable to return.
$default The default value to use if this variable has never been set.
The value of the variable.
function variable_get($name, $default = NULL) {
global $conf;
return isset($conf[$name]) ? $conf[$name] : $default;
}