You are here

public function WorkflowTransition::isForced in Workflow 7.2

A transition may be forced skipping checks.

1 call to WorkflowTransition::isForced()
WorkflowTransition::execute in includes/Entity/WorkflowTransition.php
Execute a transition (change state of a node).

File

includes/Entity/WorkflowTransition.php, line 653
Contains workflow\includes\Entity\WorkflowTransition. Contains workflow\includes\Entity\WorkflowTransitionController.

Class

WorkflowTransition
Implements an actual Transition.

Code

public function isForced() {
  return (bool) $this->force;
}