-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractElement.php
More file actions
400 lines (350 loc) · 7.31 KB
/
AbstractElement.php
File metadata and controls
400 lines (350 loc) · 7.31 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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<?php
/**
* Fwk
*
* Copyright (c) 2011-2012, Julien Ballestracci <julien@nitronet.org>.
* All rights reserved.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* PHP Version 5.3
*
* @category Form
* @package Fwk\Form
* @author Julien Ballestracci <julien@nitronet.org>
* @copyright 2011-2012 Julien Ballestracci <julien@nitronet.org>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @link http://www.phpfwk.com
*/
namespace Fwk\Form;
abstract class AbstractElement implements Element
{
/**
* @var array
*/
protected $attributes = array();
/**
* @var mixed
*/
protected $default;
/**
* @var string
*/
protected $label;
/**
* @var string
*/
protected $hint;
/**
* @var array
*/
protected $sanitizers = array();
/**
* @var array
*/
protected $filters = array();
/**
* @var string
*/
protected $error;
/**
* @var Form
*/
protected $parent;
/**
*
* @param string $name
* @param string $id
* @param mixed $default
*
* @return void
*/
public function __construct($name, $id = null, $default = null)
{
$this->setAttr(Element::ATTR_NAME, $name);
if (!is_null($id)) {
$this->setAttr(Element::ATTR_ID, $id);
} else {
$this->setAttr(Element::ATTR_ID, 'elem'. rand(99,999));
}
$this->default = $default;
}
/**
*
* @param Form $form
*
* @return Element
*/
public function setParent(Form $form)
{
$this->parent = $form;
return $this;
}
/**
*
* @param string $label
*
* @return Element
*/
public function label($label)
{
$this->label = $label;
return $this;
}
/**
*
* @return boolean
*/
public function hasLabel()
{
return (isset($this->label) && !empty($this->label));
}
/**
*
* @return string
*/
public function getLabel()
{
return $this->label;
}
/**
*
* @param string $hint
*
* @return Element
*/
public function hint($hint)
{
$this->hint = $hint;
return $this;
}
/**
*
* @return boolean
*/
public function hasHint()
{
return (isset($this->hint) && !empty($this->hint));
}
/**
*
* @return string
*/
public function getHint()
{
return $this->hint;
}
/**
*
* @return Form
*/
public function getParent()
{
return $this->parent;
}
/**
*
* @return boolean
*/
public function hasValue()
{
return isset($this->attributes[Element::ATTR_VALUE]);
}
/**
*
* @return boolean
*/
public function hasDefault()
{
return isset($this->default);
}
/**
*
* @return boolean
*/
public function hasError()
{
return (isset($this->error) && !empty($this->error));
}
/**
*
* @return Element
*/
public function clear()
{
if (!empty($this->default)) {
$this->attributes[Element::ATTR_VALUE] = $this->default;
} else {
unset($this->attributes[Element::ATTR_VALUE]);
}
return $this;
}
/**
*
* @param string $attrName
* @param string $attrValue
*
* @return Element
*/
public function setAttr($attrName, $attrValue)
{
$this->attributes[$attrName] = $attrValue;
return $this;
}
/**
*
* @param string $attrName
*
* @return Element
*/
public function removeAttr($attrName)
{
if (\array_key_exists($attrName, $this->attributes)) {
unset($this->attributes[$attrName]);
}
return $this;
}
/**
*
* @param string $attribute
*
* @return string
*/
public function attribute($attribute, $default = null)
{
if (\array_key_exists($attribute, $this->attributes)) {
return $this->attributes[$attribute];
}
return $default;
}
/**
*
* @return string
*/
public function getName()
{
return $this->attribute(Element::ATTR_NAME);
}
/**
*
* @return Element
*/
public function setValue($value)
{
foreach ($this->sanitizers as $sanitizer) {
$value = $sanitizer->sanitize($value);
}
$this->setAttr(Element::ATTR_VALUE, $value);
return $this;
}
/**
*
* @return boolean
*/
public function validate()
{
foreach ($this->filters as $valid) {
$filter = $valid['filter'];
$err = $valid['error'];
if (!$filter->validate($this->valueOrDefault())) {
$this->error = (empty($err) ? true : $err);
return false;
}
}
return true;
}
/**
*
* @return string
*/
public function getError()
{
return $this->error;
}
/**
*
* @return string
*/
public function value()
{
return $this->attribute(Element::ATTR_VALUE);
}
/**
*
* @return mixed
*/
public function valueOrDefault()
{
if (!$this->hasValue())
{
return $this->default;
}
return $this->value();
}
/**
*
* @param string $defaultValue
*
* @return Element
*/
public function setDefault($defaultValue)
{
$this->default = $defaultValue;
return $this;
}
/**
*
* @return mixed
*/
public function getDefault()
{
return $this->default;
}
/**
*
* @return array
*/
public function attributes()
{
return $this->attributes;
}
/**
*
* @param Filter $filter
*
* @return Element
*/
public function filter(Filter $filter, $errorMessage = null)
{
$this->filters[] = array(
'filter' => $filter,
'error' => $errorMessage
);
return $this;
}
/**
*
* @param Sanitizer $sanitizer
*
* @return Element
*/
public function sanitizer(Sanitizer $sanitizer)
{
$this->sanitizers[] = $sanitizer;
return $this;
}
}