-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathhiring.php
41 lines (31 loc) · 1.13 KB
/
hiring.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* @author Jorge Patricio Castro Castillo <jcastro arroba eftec dot cl>
* @link https://github.com/EFTEC/StateMachineOne
*/
use eftec\statemachineone\Flags;
use eftec\statemachineone\Job;
use eftec\statemachineone\StateMachineOne;
use mapache_commons\Debug;
$stateMachine=new StateMachineOne(null);
$stateMachine->setDebug(true);
$stateMachine->setDebugAsArray(true);
$stateMachine->setDefaultInitState(IdStatusSTOP);
$stateMachine->setStates([
IdStatusSTOP=>'Detenido',
IdStatusPREINJECT1=>'Pre Inyeccion',
IdStatusPREINJECT2=>'Pre Inyeccion',
IdStatusINJECT1=>'Inicio Inyeccion',
IdStatusINJECTEND=>'Fin Inyeccion',
IdStatusPREINIT=>'Revisando Peso',
IdStatusINIT=>'Proceso Iniciado',
IdStatusNOFAN=>'Proceso Iniciado (sin fan)',
IdStatusREINJECT=>'Reinyectar',
IdStatusENDPROCESS=>'Fin del Proceso',
IdStatusENDEVACUATION=>'Fin de evacuación',
IdStatusTIMEOUT=>'Fin del tiempo'
],false);
$stateMachine->fieldDefault=['V1'=>1];
$stateMachine->addTransition('PREHIRING','INTERVIEW'
,'when CANDIDATE');
$stateMachine->viewUI(null,$msg); // null means it takes the current job