public function WorkflowTransition::isExecuted in Workflow 8
Returns if this is an Executed Transition.
Return value
bool
Overrides WorkflowTransitionInterface::isExecuted
1 call to WorkflowTransition::isExecuted()
- WorkflowTransition::executeAndUpdateEntity in src/
Entity/ WorkflowTransition.php - Executes a transition (change state of an entity), from OUTSIDE the entity.
File
- src/
Entity/ WorkflowTransition.php, line 846
Class
- WorkflowTransition
- Implements an actual, executed, Transition.
Namespace
Drupal\workflow\EntityCode
public function isExecuted() {
return (bool) $this->isExecuted;
}