You are here

function cumulus_variable_set in Cumulus 7

Set single variable

1 call to cumulus_variable_set()
_cumulus_block_save in ./cumulus.admin.inc
Implements hook_block_save().

File

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

Code

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