You are here

public function VariableRealmDefaultStore::variable_add in Variable 7.2

Implementation of VariableRealmStoreInterface::variable_add().

Overrides VariableRealmStoreInterface::variable_add

File

variable_realm/variable_realm.class.inc, line 490
Variable realm controller

Class

VariableRealmDefaultStore
Base class, keeps static list of variables.

Code

public function variable_add($name, $value) {
  $this
    ->variable_init();
  $this->variables[$name] = $value;
}