1 | <?php |
||
10 | class PulseColumnStatusValue extends PulseColumnValue |
||
11 | { |
||
12 | /** |
||
13 | * The index of the orange status |
||
14 | */ |
||
15 | const Orange = 0; |
||
|
|||
16 | |||
17 | /** |
||
18 | * The index of the light green status |
||
19 | */ |
||
20 | const L_Green = 1; |
||
21 | |||
22 | /** |
||
23 | * The index of the red status |
||
24 | */ |
||
25 | const Red = 2; |
||
26 | |||
27 | /** |
||
28 | * The index of the blue status |
||
29 | */ |
||
30 | const Blue = 3; |
||
31 | |||
32 | /** |
||
33 | * The index of the purple status |
||
34 | */ |
||
35 | const Purple = 4; |
||
36 | |||
37 | /** |
||
38 | * The index of the grey status |
||
39 | */ |
||
40 | const Grey = 5; |
||
41 | |||
42 | /** |
||
43 | * The index of the green status |
||
44 | */ |
||
45 | const Green = 6; |
||
46 | |||
47 | /** |
||
48 | * The index of the light blue status |
||
49 | */ |
||
50 | const L_Blue = 7; |
||
51 | |||
52 | /** |
||
53 | * The index of the gold status |
||
54 | */ |
||
55 | const Gold = 8; |
||
56 | |||
57 | /** |
||
58 | * The index of the yellow status |
||
59 | */ |
||
60 | const Yellow = 9; |
||
61 | |||
62 | /** |
||
63 | * The index of the black status |
||
64 | */ |
||
65 | const Black = 10; |
||
66 | |||
67 | public function getValue () |
||
76 | |||
77 | public function updateValue ($color) |
||
94 | } |