public function VariableRealmUnionController::getRequestKey in Variable 7.2
Implementation of VariableRealmControllerInterface::getRequestKey().
Overrides VariableRealmDefaultController::getRequestKey
3 calls to VariableRealmUnionController::getRequestKey()
- VariableRealmUnionController::start in variable_realm/
variable_realm_union.class.inc - Implementation of VariableRealmControllerInterface::start().
- VariableRealmUnionController::variableRealmEnable in variable_realm/
variable_realm_union.class.inc - Implementation of VariableRealmHooks::variableRealmEnable()
- VariableRealmUnionController::variableRealmSwitch in variable_realm/
variable_realm_union.class.inc - Implementation of VariableRealmHooks::variableRealmSwitch()
File
- variable_realm/
variable_realm_union.class.inc, line 74 - Classes for Realm Union.
Class
- VariableRealmUnionController
- Default Realm Union class
Code
public function getRequestKey() {
// We'll have a request key if union realms have a current key.
$keys = $this
->invokeUnionRealms('getKey');
return $this
->buildUnionKey($keys);
}