This repository was archived by the owner on Jul 10, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathTwbBundleFormRow.php
More file actions
290 lines (243 loc) · 11.4 KB
/
Copy pathTwbBundleFormRow.php
File metadata and controls
290 lines (243 loc) · 11.4 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
<?php
namespace TwbBundle\Form\View\Helper;
class TwbBundleFormRow extends \Zend\Form\View\Helper\FormRow {
/**
* @var string
*/
protected static $formGroupFormat = '<div class="form-group %s">%s</div>';
/**
* @var string
*/
protected static $horizontalLayoutFormat = '<div class="%s">%s</div>';
/**
* @var string
*/
protected static $checkboxFormat = '<div class="checkbox">%s</div>';
/**
* @var string
*/
protected static $helpBlockFormat = '<p class="help-block">%s</p>';
/**
* The class that is added to element that have errors
* @var string
*/
protected $inputErrorClass = '';
/**
* @var string
*/
protected $requiredFormat = null;
/**
* @see \Zend\Form\View\Helper\FormRow::render()
* @param \Zend\Form\ElementInterface $oElement
* @return string
*/
public function render(\Zend\Form\ElementInterface $oElement) {
$sElementType = $oElement->getAttribute('type');
//Nothing to do for hidden elements which have no messages
if ($sElementType === 'hidden' && !$oElement->getMessages()) {
return parent::render($oElement);
}
//Retrieve expected layout
$sLayout = $oElement->getOption('twb-layout');
//Partial rendering
if ($this->partial) {
return $this->view->render($this->partial, array(
'element' => $oElement,
'label' => $this->renderLabel($oElement),
'labelAttributes' => $this->labelAttributes,
'labelPosition' => $this->labelPosition,
'renderErrors' => $this->renderErrors,
));
}
$sRowClass = '';
//Validation state
if (($sValidationState = $oElement->getOption('validation-state'))) {
$sRowClass .= ' has-' . $sValidationState;
}
//"has-error" validation state case
if ($oElement->getMessages()) {
$sRowClass .= ' has-error';
//Element have errors
if ($sInputErrorClass = $this->getInputErrorClass()) {
if ($sElementClass = $oElement->getAttribute('class')) {
if (!preg_match('/(\s|^)' . preg_quote($sInputErrorClass, '/') . '(\s|$)/', $sElementClass)) {
$oElement->setAttribute('class', trim($sElementClass . ' ' . $sInputErrorClass));
}
} else {
$oElement->setAttribute('class', $sInputErrorClass);
}
}
}
//Column size
if (
($sColumSize = $oElement->getOption('column-size')) && $sLayout !== \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_HORIZONTAL
) {
$sRowClass .= ' col-' . $sColumSize;
}
//Render element
$sElementContent = $this->renderElement($oElement);
//Render form row
if ($sElementType === 'checkbox' && $sLayout !== \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_HORIZONTAL) {
return $sElementContent . PHP_EOL;
}
if (($sElementType === 'submit' || $sElementType === 'button' || $sElementType === 'reset') && $sLayout === \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_INLINE
) {
return $sElementContent . PHP_EOL;
}
return sprintf(self::$formGroupFormat, $sRowClass, $sElementContent) . PHP_EOL;
}
/**
* Render element's label
* @param \Zend\Form\ElementInterface $oElement
* @return string
*/
protected function renderLabel(\Zend\Form\ElementInterface $oElement) {
if (($sLabel = $oElement->getLabel()) && ($oTranslator = $this->getTranslator())) {
$sLabel = $oTranslator->translate($sLabel, $this->getTranslatorTextDomain());
}
return $sLabel;
}
/**
* Parse label attributes
* @param \Zend\Form\ElementInterface $oElement
* @param array $aLabelAttributes
*/
protected function parseLabelAttributes(\Zend\Form\ElementInterface $oElement, $aLabelAttributes)
{
//Validation state
if ($oElement->getOption('validation-state') || count($oElement->getMessages())) {
if (empty($aLabelAttributes['class'])) {
$aLabelAttributes['class'] = 'control-label';
} elseif (!preg_match('/(\s|^)control-label(\s|$)/', $aLabelAttributes['class'])) {
$aLabelAttributes['class'] = trim($aLabelAttributes['class'] . ' control-label');
}
}
switch ($oElement->getOption('twb-layout')) {
//Hide label for "inline" layout
case \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_INLINE:
if ($oElement->getAttribute('type') !== 'checkbox') {
if (empty($aLabelAttributes['class'])) {
$aLabelAttributes['class'] = 'sr-only';
} elseif (!preg_match('/(\s|^)sr-only(\s|$)/', $aLabelAttributes['class'])) {
$aLabelAttributes['class'] = trim($aLabelAttributes['class'] . ' sr-only');
}
}
break;
case \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_HORIZONTAL:
if (empty($aLabelAttributes['class'])) {
$aLabelAttributes['class'] = 'control-label';
} else {
if (!preg_match('/(\s|^)control-label(\s|$)/', $aLabelAttributes['class'])) {
$aLabelAttributes['class'] = trim($aLabelAttributes['class'] . ' control-label');
}
}
break;
}
return $aLabelAttributes;
}
/**
* Render element
* @param \Zend\Form\ElementInterface $oElement
* @throws \DomainException
* @return string
*/
protected function renderElement(\Zend\Form\ElementInterface $oElement) {
//Retrieve expected layout
$sLayout = $oElement->getOption('twb-layout');
//Render label
$sLabelOpen = $sLabelClose = $sLabelContent = $sElementType = '';
if ($sLabelContent = $this->renderLabel($oElement)) {
//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
$sElementType = $oElement->getAttribute('type');
//Button element is a special case, because label is always rendered inside it
if ($oElement instanceof \Zend\Form\Element\Button) {
$sLabelContent = '';
} else {
$aLabelAttributes = $oElement->getLabelAttributes() ? : $this->labelAttributes;
//Parse radio label attributes
$aLabelAttributes = $this->parseLabelAttributes($oElement, $aLabelAttributes);
if ($aLabelAttributes) {
$oElement->setLabelAttributes($aLabelAttributes);
}
if (false === $oElement->getOption('global-label-attributes')) {
//Parse global label attributes
$aGlobalLabelAttributes = $this->parseLabelAttributes($oElement, array());
} else {
$aGlobalLabelAttributes = $aLabelAttributes;
}
$oLabelHelper = $this->getLabelHelper();
$sLabelOpen = $oLabelHelper->openTag($oElement->getAttribute('id') ? $oElement : $aGlobalLabelAttributes);
$sLabelClose = $oLabelHelper->closeTag();
// Allow label html escape desable
//$sLabelContent = $this->getEscapeHtmlHelper()->__invoke($sLabelContent);
if (!$oElement instanceof \Zend\Form\LabelAwareInterface || !$oElement->getLabelOption('disable_html_escape')) {
$sLabelContent = $this->getEscapeHtmlHelper()->__invoke($sLabelContent);
}
}
}
//Add required string if element is required
if ($this->requiredFormat && $oElement->getAttribute('required') && strpos($this->requiredFormat, $sLabelContent) === false) {
$sLabelContent .= $this->requiredFormat;
}
switch ($sLayout) {
case null:
case \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_INLINE:
$sElementContent = $this->getElementHelper()->render($oElement);
// Checkbox elements are a special case, element is already rendered into label
if ($sElementType === 'checkbox') {
$sElementContent = sprintf(self::$checkboxFormat, $sElementContent);
} else {
if ($this->getLabelPosition() === self::LABEL_PREPEND) {
$sElementContent = $sLabelOpen . $sLabelContent . $sLabelClose . $sElementContent;
} else {
$sElementContent = $sElementContent . $sLabelOpen . $sLabelContent . $sLabelClose;
}
}
//Render help block
$sElementContent .= $this->renderHelpBlock($oElement);
//Render errors
if ($this->renderErrors) {
$sElementContent .= $this->getElementErrorsHelper()->render($oElement);
}
return $sElementContent;
case \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_HORIZONTAL:
$sElementContent = $this->getElementHelper()->render($oElement) . $this->renderHelpBlock($oElement);
//Render errors
if ($this->renderErrors) {
$sElementContent .= $this->getElementErrorsHelper()->render($oElement);
}
$sClass = '';
//Column size
if ($sColumSize = $oElement->getOption('column-size')) {
$sClass .= ' col-' . $sColumSize;
}
// Checkbox elements are a special case, element is rendered into label
if ($sElementType === 'checkbox') {
return sprintf(
self::$horizontalLayoutFormat, $sClass, sprintf(self::$checkboxFormat, $sElementContent)
);
}
if ($this->getLabelPosition() === self::LABEL_PREPEND) {
return $sLabelOpen . $sLabelContent . $sLabelClose . sprintf(
self::$horizontalLayoutFormat, $sClass, $sElementContent
);
} else {
return sprintf(
self::$horizontalLayoutFormat, $sClass, $sElementContent
) . $sLabelOpen . $sLabelContent . $sLabelClose;
}
default:
throw new \DomainException('Layout "' . $sLayout . '" is not valid');
}
}
/**
* Render element's help block
* @param \Zend\Form\ElementInterface $oElement
* @return string
*/
protected function renderHelpBlock(\Zend\Form\ElementInterface $oElement) {
return ($sHelpBlock = $oElement->getOption('help-block')) ? sprintf(
self::$helpBlockFormat, $this->getEscapeHtmlHelper()->__invoke(($oTranslator = $this->getTranslator()) ? $oTranslator->translate($sHelpBlock, $this->getTranslatorTextDomain()) : $sHelpBlock)
) : '';
}
}