You are here

public function VariableRealmDefaultStore::__construct in Variable 7.2

Class constructor.

Overrides VariableRealmStoreInterface::__construct

File

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

Class

VariableRealmDefaultStore
Base class, keeps static list of variables.

Code

public function __construct($realm, $key, $variables = NULL) {
  $this->realm = $realm;
  $this->key = $key;
  $this->variables = $variables;
}