function ExecutionState::hasVariable
Overrides ExecutionStateInterface::hasVariable
1 call to ExecutionState::hasVariable()
- ExecutionState::getVariable in src/
Context/ ExecutionState.php - Gets a variable.
File
-
src/
Context/ ExecutionState.php, line 121
Class
- ExecutionState
- The rules execution state.
Namespace
Drupal\rules\ContextCode
public function hasVariable($name) {
if (!array_key_exists($name, $this->variables)) {
// If there is no such variable, lazy-add global context variables. That
// way we can save time fetching global context if it is not needed.
if (!($name[0] === '@' && strpos($name, ':') !== FALSE)) {
return FALSE;
}
$contexts = $this->getGlobalContextRepository()
->getRuntimeContexts([
$name,
]);
if (!array_key_exists($name, $contexts)) {
return FALSE;
}
$this->setVariableData($name, $contexts[$name]->getContextData());
}
return TRUE;
}