This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathFormRow.php
446 lines (385 loc) · 12.2 KB
/
FormRow.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
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Zend\Form\View\Helper;
use Zend\Form\Element\Button;
use Zend\Form\Element\MonthSelect;
use Zend\Form\Element\Captcha;
use Zend\Form\ElementInterface;
use Zend\Form\Exception;
use Zend\Form\LabelAwareInterface;
class FormRow extends AbstractHelper
{
const LABEL_APPEND = 'append';
const LABEL_PREPEND = 'prepend';
/**
* The class that is added to element that have errors
*
* @var string
*/
protected $inputErrorClass = 'input-error';
/**
* The attributes for the row label
*
* @var array
*/
protected $labelAttributes;
/**
* Where will be label rendered?
*
* @var string
*/
protected $labelPosition = self::LABEL_PREPEND;
/**
* Are the errors are rendered by this helper?
*
* @var bool
*/
protected $renderErrors = true;
/**
* Form label helper instance
*
* @var FormLabel
*/
protected $labelHelper;
/**
* Form element helper instance
*
* @var FormElement
*/
protected $elementHelper;
/**
* Form element errors helper instance
*
* @var FormElementErrors
*/
protected $elementErrorsHelper;
/**
* @var string
*/
protected $partial;
/**
* Invoke helper as functor
*
* Proxies to {@link render()}.
*
* @param null|ElementInterface $element
* @param null|string $labelPosition
* @param bool $renderErrors
* @param string|null $partial
* @return string|FormRow
*/
public function __invoke(
ElementInterface $element = null,
$labelPosition = null,
$renderErrors = null,
$partial = null
) {
if (! $element) {
return $this;
}
if (is_null($labelPosition)) {
$labelPosition = $this->getLabelPosition();
}
if ($renderErrors !== null) {
$this->setRenderErrors($renderErrors);
}
if ($partial !== null) {
$this->setPartial($partial);
}
return $this->render($element, $labelPosition);
}
/**
* Utility form helper that renders a label (if it exists), an element and errors
*
* @param ElementInterface $element
* @param null|string $labelPosition
* @throws \Zend\Form\Exception\DomainException
* @return string
*/
public function render(ElementInterface $element, $labelPosition = null)
{
$escapeHtmlHelper = $this->getEscapeHtmlHelper();
$labelHelper = $this->getLabelHelper();
$elementHelper = $this->getElementHelper();
$elementErrorsHelper = $this->getElementErrorsHelper();
$label = $element->getLabel();
$inputErrorClass = $this->getInputErrorClass();
if (is_null($labelPosition)) {
$labelPosition = $this->labelPosition;
}
if (isset($label) && '' !== $label) {
// Translate the label
if (null !== ($translator = $this->getTranslator())) {
$label = $translator->translate($label, $this->getTranslatorTextDomain());
}
}
// Does this element have errors ?
if ($element->getMessages() && $inputErrorClass) {
$classAttributes = ($element->hasAttribute('class') ? $element->getAttribute('class') . ' ' : '');
$classAttributes = $classAttributes . $inputErrorClass;
$element->setAttribute('class', $classAttributes);
}
if ($this->partial) {
$vars = [
'element' => $element,
'label' => $label,
'labelAttributes' => $this->labelAttributes,
'labelPosition' => $labelPosition,
'renderErrors' => $this->renderErrors,
];
return $this->view->render($this->partial, $vars);
}
if ($this->renderErrors) {
$elementErrors = $elementErrorsHelper->render($element);
}
$elementString = $elementHelper->render($element);
// hidden elements do not need a <label> -https://github.com/zendframework/zf2/issues/5607
$type = $element->getAttribute('type');
if (isset($label) && '' !== $label && $type !== 'hidden') {
$labelAttributes = [];
if ($element instanceof LabelAwareInterface) {
$labelAttributes = $element->getLabelAttributes();
}
if (! $element instanceof LabelAwareInterface || ! $element->getLabelOption('disable_html_escape')) {
$label = $escapeHtmlHelper($label);
}
if (empty($labelAttributes)) {
$labelAttributes = $this->labelAttributes;
}
// Multicheckbox elements have to be handled differently as the HTML standard does not allow nested
// labels. The semantic way is to group them inside a fieldset
if ($type === 'multi_checkbox'
|| $type === 'radio'
|| $element instanceof MonthSelect
|| $element instanceof Captcha
) {
$markup = sprintf(
'<fieldset><legend>%s</legend>%s</fieldset>',
$label,
$elementString
);
} else {
// Ensure element and label will be separated if element has an `id`-attribute.
// If element has label option `always_wrap` it will be nested in any case.
if ($element->hasAttribute('id')
&& ($element instanceof LabelAwareInterface && ! $element->getLabelOption('always_wrap'))
) {
$labelOpen = '';
$labelClose = '';
$label = $labelHelper->openTag($element) . $label . $labelHelper->closeTag();
} else {
$labelOpen = $labelHelper->openTag($labelAttributes);
$labelClose = $labelHelper->closeTag();
}
if ($label !== '' && (! $element->hasAttribute('id'))
|| ($element instanceof LabelAwareInterface && $element->getLabelOption('always_wrap'))
) {
$label = '<span>' . $label . '</span>';
}
// Button element is a special case, because label is always rendered inside it
if ($element instanceof Button) {
$labelOpen = $labelClose = $label = '';
}
if ($element instanceof LabelAwareInterface && $element->getLabelOption('label_position')) {
$labelPosition = $element->getLabelOption('label_position');
}
switch ($labelPosition) {
case self::LABEL_PREPEND:
$markup = $labelOpen . $label . $elementString . $labelClose;
break;
case self::LABEL_APPEND:
default:
$markup = $labelOpen . $elementString . $label . $labelClose;
break;
}
}
if ($this->renderErrors) {
$markup .= $elementErrors;
}
} else {
if ($this->renderErrors) {
$markup = $elementString . $elementErrors;
} else {
$markup = $elementString;
}
}
return $markup;
}
/**
* Set the class that is added to element that have errors
*
* @param string $inputErrorClass
* @return FormRow
*/
public function setInputErrorClass($inputErrorClass)
{
$this->inputErrorClass = $inputErrorClass;
return $this;
}
/**
* Get the class that is added to element that have errors
*
* @return string
*/
public function getInputErrorClass()
{
return $this->inputErrorClass;
}
/**
* Set the attributes for the row label
*
* @param array $labelAttributes
* @return FormRow
*/
public function setLabelAttributes($labelAttributes)
{
$this->labelAttributes = $labelAttributes;
return $this;
}
/**
* Get the attributes for the row label
*
* @return array
*/
public function getLabelAttributes()
{
return $this->labelAttributes;
}
/**
* Set the label position
*
* @param string $labelPosition
* @throws \Zend\Form\Exception\InvalidArgumentException
* @return FormRow
*/
public function setLabelPosition($labelPosition)
{
$labelPosition = strtolower($labelPosition);
if (! in_array($labelPosition, [self::LABEL_APPEND, self::LABEL_PREPEND])) {
throw new Exception\InvalidArgumentException(sprintf(
'%s expects either %s::LABEL_APPEND or %s::LABEL_PREPEND; received "%s"',
__METHOD__,
__CLASS__,
__CLASS__,
(string) $labelPosition
));
}
$this->labelPosition = $labelPosition;
return $this;
}
/**
* Get the label position
*
* @return string
*/
public function getLabelPosition()
{
return $this->labelPosition;
}
/**
* Set if the errors are rendered by this helper
*
* @param bool $renderErrors
* @return FormRow
*/
public function setRenderErrors($renderErrors)
{
$this->renderErrors = (bool) $renderErrors;
return $this;
}
/**
* Retrieve if the errors are rendered by this helper
*
* @return bool
*/
public function getRenderErrors()
{
return $this->renderErrors;
}
/**
* Set a partial view script to use for rendering the row
*
* @param null|string $partial
* @return FormRow
*/
public function setPartial($partial)
{
$this->partial = $partial;
return $this;
}
/**
* Retrieve current partial
*
* @return null|string
*/
public function getPartial()
{
return $this->partial;
}
/**
* Retrieve the FormLabel helper
*
* @return FormLabel
*/
protected function getLabelHelper()
{
if ($this->labelHelper) {
return $this->labelHelper;
}
if (method_exists($this->view, 'plugin')) {
$this->labelHelper = $this->view->plugin('form_label');
}
if (! $this->labelHelper instanceof FormLabel) {
$this->labelHelper = new FormLabel();
}
if ($this->hasTranslator()) {
$this->labelHelper->setTranslator(
$this->getTranslator(),
$this->getTranslatorTextDomain()
);
}
return $this->labelHelper;
}
/**
* Retrieve the FormElement helper
*
* @return FormElement
*/
protected function getElementHelper()
{
if ($this->elementHelper) {
return $this->elementHelper;
}
if (method_exists($this->view, 'plugin')) {
$this->elementHelper = $this->view->plugin('form_element');
}
if (! $this->elementHelper instanceof FormElement) {
$this->elementHelper = new FormElement();
}
return $this->elementHelper;
}
/**
* Retrieve the FormElementErrors helper
*
* @return FormElementErrors
*/
protected function getElementErrorsHelper()
{
if ($this->elementErrorsHelper) {
return $this->elementErrorsHelper;
}
if (method_exists($this->view, 'plugin')) {
$this->elementErrorsHelper = $this->view->plugin('form_element_errors');
}
if (! $this->elementErrorsHelper instanceof FormElementErrors) {
$this->elementErrorsHelper = new FormElementErrors();
}
return $this->elementErrorsHelper;
}
}