function ExecutionState::setVariableData
Overrides ExecutionStateInterface::setVariableData
2 calls to ExecutionState::setVariableData()
- ExecutionState::hasVariable in src/
Context/ ExecutionState.php - Checks if a variable exists by name in the execution state.
- ExecutionState::setVariable in src/
Context/ ExecutionState.php - Sets a state variable based on its definition and value.
File
-
src/
Context/ ExecutionState.php, line 92
Class
- ExecutionState
- The rules execution state.
Namespace
Drupal\rules\ContextCode
public function setVariableData($name, TypedDataInterface $data) {
$this->variables[$name] = $data;
return $this;
}