PHP 클래스 ezcWorkflowNodeStart, Workflow
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:
startNode->addOutNode( ....some other node here .. );
?>
파일 보기
프로젝트 열기: zetacomponents/workflow
1 사용 예제들
보호된 프로퍼티들
프로퍼티 |
타입 |
설명 |
|
$maxInNodes |
integer |
Constraint: The maximum number of incoming nodes this node has to have
to be valid. |
|
$minInNodes |
integer |
Constraint: The minimum number of incoming nodes this node has to have
to be valid. |
|
공개 메소드들
메소드 |
설명 |
|
execute ( ezcWorkflowExecution $execution ) : boolean |
Activates the sole output node. |
|
메소드 상세
Activates the sole output node.
public execute ( ezcWorkflowExecution $execution ) : boolean |
$execution |
ezcWorkflowExecution |
|
리턴 |
boolean |
true when the node finished execution,
and false otherwise |
프로퍼티 상세
Constraint: The maximum number of incoming nodes this node has to have
to be valid.
protected int $maxInNodes |
리턴 |
integer |
|
Constraint: The minimum number of incoming nodes this node has to have
to be valid.
protected int $minInNodes |
리턴 |
integer |
|