PHP Class ezcWorkflowNodeConditionalBranch, Workflow

Most implementations only need to set the conditions for proper functioning.
Inheritance: extends ezcWorkflowNodeBranch
Afficher le fichier Open project: zetacomponents/workflow

Protected Properties

Свойство Type Description
$configuration The key is the position of the out node in the array of out nodes.
$maxActivatedConditionalOutNodes integer Constraint: The maximum number of conditional outgoing nodes this node may activate. Set to false to disable this constraint.
$minActivatedConditionalOutNodes integer Constraint: The minimum number of conditional outgoing nodes this node has to activate. Set to false to disable this constraint.
$minConditionalOutNodes integer Constraint: The minimum number of conditional outgoing nodes this node has to have. Set to false to disable this constraint.

Méthodes publiques

Méthode Description
addConditionalOutNode ( ezcWorkflowCondition $condition, ezcWorkflowNode $outNode, ezcWorkflowNode $else = null ) : ezcWorkflowNode Adds the conditional outgoing node $outNode to this node with the condition $condition. Optionally, an $else node can be specified that is activated when the $condition evaluates to false.
execute ( ezcWorkflowExecution $execution ) : boolean Evaluates all the conditions, checks the constraints and activates any nodes that have passed through both checks and condition evaluation.
getCondition ( ezcWorkflowNode $node ) : ezcWorkflowCondition Returns the condition for a conditional outgoing node and false if the passed not is not a (unconditional) outgoing node of this node.
isElse ( ezcWorkflowNode $node ) : boolean Returns true when the $node belongs to an ELSE condition.
verify ( ) Checks this node's constraints.

Method Details

addConditionalOutNode() public méthode

Adds the conditional outgoing node $outNode to this node with the condition $condition. Optionally, an $else node can be specified that is activated when the $condition evaluates to false.
public addConditionalOutNode ( ezcWorkflowCondition $condition, ezcWorkflowNode $outNode, ezcWorkflowNode $else = null ) : ezcWorkflowNode
$condition ezcWorkflowCondition
$outNode ezcWorkflowNode
$else ezcWorkflowNode
Résultat ezcWorkflowNode

execute() public méthode

Evaluates all the conditions, checks the constraints and activates any nodes that have passed through both checks and condition evaluation.
public execute ( ezcWorkflowExecution $execution ) : boolean
$execution ezcWorkflowExecution
Résultat boolean true when the node finished execution, and false otherwise

getCondition() public méthode

Returns the condition for a conditional outgoing node and false if the passed not is not a (unconditional) outgoing node of this node.
public getCondition ( ezcWorkflowNode $node ) : ezcWorkflowCondition
$node ezcWorkflowNode
Résultat ezcWorkflowCondition

isElse() public méthode

Returns true when the $node belongs to an ELSE condition.
public isElse ( ezcWorkflowNode $node ) : boolean
$node ezcWorkflowNode
Résultat boolean

verify() public méthode

Checks this node's constraints.
public verify ( )

Property Details

$configuration protected_oe property

The key is the position of the out node in the array of out nodes.
protected $configuration

$maxActivatedConditionalOutNodes protected_oe property

Constraint: The maximum number of conditional outgoing nodes this node may activate. Set to false to disable this constraint.
protected int $maxActivatedConditionalOutNodes
Résultat integer

$minActivatedConditionalOutNodes protected_oe property

Constraint: The minimum number of conditional outgoing nodes this node has to activate. Set to false to disable this constraint.
protected int $minActivatedConditionalOutNodes
Résultat integer

$minConditionalOutNodes protected_oe property

Constraint: The minimum number of conditional outgoing nodes this node has to have. Set to false to disable this constraint.
protected int $minConditionalOutNodes
Résultat integer