Workflow: ezcWorkflowNodeEnd
[ ]
[ Theoretical background ]
[ ]
[ ]
[ ]
[ ]
Class: ezcWorkflowNodeEnd
|
An object of the ezcWorkflowNodeEnd class represents an end node of a workflow. [
source]
A workflow must have at least one end node. The execution of the workflow ends when an end node is reached. Creating an object of the ezcWorkflow class automatically creates a default end node for the new workflow. It can be accessed through the getEndNode() method.
Incoming nodes: 1 Outgoing nodes: 0
Example:
1. <?php
2. $workflow = new ezcWorkflow( 'Test' );
3. // build up your workflow here... result in $node
4. $node = ...
5. $workflow->startNode->addOutNode( ... some other node here ... );
6. $node->addOutNode( $workflow->endNode );
7. ?>
Parents
ezcWorkflowNode
|
--ezcWorkflowNodeEnd
Descendents
Inherited Constants
From
ezcWorkflowNode:
Member Variables
|
protected integer |
$maxOutNodes
= 0
Constraint: The maximum number of outgoing nodes this node has to have to be valid. |
|
protected integer |
$minOutNodes
= 0
Constraint: The minimum number of outgoing nodes this node has to have to be valid. |
Inherited Member Variables
From
ezcWorkflowNode:
Inherited Methods
From
ezcWorkflowNode :
Last updated: Mon, 21 Dec 2009