You are here

function cumulus_variable_get in Cumulus 7

Get single variable

1 call to cumulus_variable_get()
cumulus_get_config in ./cumulus.module
Returns the configuration for the requested block delta.

File

./cumulus.module, line 275
The brain of Cumulus.

Code

function cumulus_variable_get($name, $delta, $default = NULL) {
  return variable_get('cumulus_' . $delta . '_' . $name, $default);
}