-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathStep.php
More file actions
200 lines (161 loc) · 3.78 KB
/
Copy pathStep.php
File metadata and controls
200 lines (161 loc) · 3.78 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<?php
namespace Craue\FormFlowBundle\Form;
use Craue\FormFlowBundle\Exception\InvalidTypeException;
use Symfony\Component\Form\FormTypeInterface;
/**
* @author Christian Raue <christian.raue@gmail.com>
* @copyright 2011-2015 Christian Raue
* @license http://opensource.org/licenses/mit-license.php MIT License
*/
class Step implements StepInterface {
/**
* @var integer
*/
protected $number;
/**
* @var string|null
*/
protected $label = null;
/**
* @var FormTypeInterface|string|null
*/
protected $formType = null;
/**
* @var array
*/
protected $formOptions = array();
/**
* @var callable|null
*/
private $skipFunction = null;
/**
* @var boolean|null Is only null if not yet evaluated.
*/
private $skipped = false;
public static function createFromConfig($number, array $config) {
$step = new static();
$step->setNumber($number);
foreach ($config as $key => $value) {
switch ($key) {
case 'label':
$step->setLabel($value);
break;
case 'type':
@trigger_error('Step config option "type" is deprecated since version 3.0. Use "form_type" instead.', E_USER_DEPRECATED);
case 'form_type':
$step->setFormType($value);
break;
case 'form_options':
$step->setFormOptions($value);
break;
case 'skip':
$step->setSkip($value);
break;
default:
throw new \InvalidArgumentException(sprintf('Invalid step config option "%s" given.', $key));
}
}
return $step;
}
/**
* @param integer $number
*/
public function setNumber($number) {
if (is_int($number)) {
$this->number = $number;
return;
}
throw new InvalidTypeException($number, 'integer');
}
/**
* {@inheritDoc}
*/
public function getNumber() {
return $this->number;
}
/**
* @param string|null $label
*/
public function setLabel($label) {
if ($label === null || is_string($label)) {
$this->label = $label;
return;
}
throw new InvalidTypeException($label, array('null', 'string'));
}
/**
* {@inheritDoc}
*/
public function getLabel() {
return $this->label;
}
/**
* @param FormTypeInterface|string|null $type
* @throws InvalidTypeException
*/
public function setFormType($formType) {
if ($formType === null || is_string($formType) || $formType instanceof FormTypeInterface) {
$this->formType = $formType;
return;
}
throw new InvalidTypeException($formType, array('null', 'string', 'Symfony\Component\Form\FormTypeInterface'));
}
/**
* {@inheritDoc}
*/
public function getFormType() {
return $this->formType;
}
/**
* @param array $formOptions
*/
public function setFormOptions($formOptions) {
if (is_array($formOptions)) {
$this->formOptions = $formOptions;
return;
}
throw new InvalidTypeException($formOptions, 'array');
}
/**
* {@inheritDoc}
*/
public function getFormOptions() {
return $this->formOptions;
}
/**
* @param boolean|callable $skip
* @throws InvalidTypeException
*/
public function setSkip($skip) {
if (is_bool($skip)) {
$this->skipFunction = null;
$this->skipped = $skip;
return;
}
if (is_callable($skip)) {
$this->skipFunction = $skip;
$this->skipped = null;
return;
}
throw new InvalidTypeException($skip, array('boolean', 'callable'));
}
/**
* {@inheritDoc}
*/
public function evaluateSkipping($estimatedCurrentStepNumber, FormFlowInterface $flow) {
if ($this->skipFunction !== null) {
$returnValue = call_user_func_array($this->skipFunction, array($estimatedCurrentStepNumber, $flow));
if (!is_bool($returnValue)) {
throw new \RuntimeException(sprintf('The skip callable for step %d did not return a boolean value.',
$this->number));
}
$this->skipped = $returnValue;
}
}
/**
* {@inheritDoc}
*/
public function isSkipped() {
return $this->skipped === true;
}
}