Workflow: ezcWorkflowNodeStart
[ ]
[ Theoretical background ]
[ ]
[ ]
[ ]
[ ]
Class: ezcWorkflowNodeStart
|
An object of the ezcWorkflowNodeStart class represents the one and only tart node of a workflow. The execution of the workflow starts here. [
source]
Creating an object of the ezcWorkflow class automatically creates the start node for the new workflow. It can be accessed through the $startNode property of the workflow.
Incoming nodes: 0 Outgoing nodes: 1
Example:
1. <?php
2. $workflow = new ezcWorkflow( 'Test' );
3. $workflow->startNode->addOutNode( ....some other node here .. );
4. ?>
Parents
ezcWorkflowNode
|
--ezcWorkflowNodeStart
Descendents
| Child Class |
Description |
| ezcWorkflowNodeFinally |
Special type of start node that is activated when a workflow execution is cancelled.
|
Inherited Constants
From
ezcWorkflowNode:
Member Variables
|
protected integer |
$maxInNodes
= 0
Constraint: The maximum number of incoming nodes this node has to have to be valid. |
|
protected integer |
$minInNodes
= 0
Constraint: The minimum number of incoming nodes this node has to have to be valid. |
Inherited Member Variables
From
ezcWorkflowNode:
Inherited Methods
From
ezcWorkflowNode :
Last updated: Thu, 03 Jul 2008