PHP Интерфейс raoul2000\workflow\base\StatusInterface

Показать файл Открыть проект

Открытые методы

Метод Описание
getId ( ) : string Returns the id of this status.
getLabel ( ) : string Returns the label for this status.
getTransitions ( ) : Transition[] Returns the list of Transitions instances leaving this status.
getWorkflow ( ) : Workflow Returns the workflow instance this status belongs to
getWorkflowId ( ) : string
isInitialStatus ( ) : boolean Test is this status is the initial status of the parent workflow

Описание методов

getId() публичный Метод

Returns the id of this status.
public getId ( ) : string
Результат string the id for this status

getLabel() публичный Метод

Returns the label for this status.
public getLabel ( ) : string
Результат string the label for this status. .

getTransitions() публичный Метод

The array returned is indexed by the canonical id of the end status. Note that an empty array can be returned if this status has no out-going transition (i.e. no other status can be reached).
public getTransitions ( ) : Transition[]
Результат Transition[] the list of out-going transitions for this status.

getWorkflow() публичный Метод

Returns the workflow instance this status belongs to
public getWorkflow ( ) : Workflow
Результат Workflow the workflow instance

getWorkflowId() публичный Метод

public getWorkflowId ( ) : string
Результат string the id of the workflow this status belongs to.

isInitialStatus() публичный Метод

Test is this status is the initial status of the parent workflow
public isInitialStatus ( ) : boolean
Результат boolean TRUE if this status is the initial status of its parent workflow, FALSE otherwise