You are here

public function VariableRealmGlobalStore::variable_del in Variable 7.2

Delete single variable.

Parameters

$name: Variable name

Overrides VariableRealmDefaultStore::variable_del

File

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

Class

VariableRealmGlobalStore
Controller for default system variables.

Code

public function variable_del($name) {
  parent::variable_del($name);
  variable_del($name);
}