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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View\Element\Html;
/**
* HTML select element block
*/
class Select extends \Magento\Framework\View\Element\AbstractBlock
{
/**
* Options
*
* @var array
*/
protected $_options = [];
/**
* Get options of the element
*
* @return array
*/
public function getOptions()
{
return $this->_options;
}
/**
* Set options for the HTML select
*
* @param array $options
* @return $this
*/
public function setOptions($options)
{
$this->_options = $options;
return $this;
}
/**
* Add an option to HTML select
*
* @param string $value HTML value
* @param string $label HTML label
* @param array $params HTML attributes
* @return $this
*/
public function addOption($value, $label, $params = [])
{
$this->_options[] = ['value' => $value, 'label' => $label, 'params' => $params];
return $this;
}
/**
* Set element's HTML ID
*
* @param string $elementId ID
* @return $this
*/
public function setId($elementId)
{
$this->setData('id', $elementId);
return $this;
}
/**
* Set element's CSS class
*
* @param string $class Class
* @return $this
*/
public function setClass($class)
{
$this->setData('class', $class);
return $this;
}
/**
* Set element's HTML title
*
* @param string $title Title
* @return $this
*/
public function setTitle($title)
{
$this->setData('title', $title);
return $this;
}
/**
* HTML ID of the element
*
* @return string
*/
public function getId()
{
return $this->getData('id');
}
/**
* CSS class of the element
*
* @return string
*/
public function getClass()
{
return $this->getData('class');
}
/**
* Returns HTML title of the element
*
* @return string
*/
public function getTitle()
{
return $this->getData('title');
}
/**
* Render HTML
*
* @return string
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.NPathComplexity)
*/
protected function _toHtml()
{
if (!$this->_beforeToHtml()) {
return '';
}
$html = '<select name="' .
$this->getName() .
'" id="' .
$this->getId() .
'" class="' .
$this->getClass() .
'" title="' .
$this->escapeHtml($this->getTitle()) .
'" ' .
$this->getExtraParams() .
'>';
$values = $this->getValue();
if (!is_array($values)) {
$values = (array)$values;
}
$isArrayOption = true;
foreach ($this->getOptions() as $key => $option) {
$optgroupName = '';
if ($isArrayOption && is_array($option)) {
$value = $option['value'];
$label = (string)$option['label'];
$optgroupName = isset($option['optgroup-name']) ? $option['optgroup-name'] : $label;
$params = !empty($option['params']) ? $option['params'] : [];
} else {
$value = (string)$key;
$label = (string)$option;
$isArrayOption = false;
$params = [];
}
if (is_array($value)) {
$html .= '<optgroup label="' . $this->escapeHtml($label)
. '" data-optgroup-name="' . $this->escapeHtml($optgroupName) . '">';
foreach ($value as $keyGroup => $optionGroup) {
if (!is_array($optionGroup)) {
$optionGroup = ['value' => $keyGroup, 'label' => $optionGroup];
}
$html .= $this->_optionToHtml($optionGroup, in_array($optionGroup['value'], $values));
}
$html .= '</optgroup>';
} else {
$html .= $this->_optionToHtml(
['value' => $value, 'label' => $label, 'params' => $params],
in_array($value, $values)
);
}
}
$html .= '</select>';
return $html;
}
/**
* Return option HTML node
*
* @param array $option
* @param boolean $selected
* @return string
*/
protected function _optionToHtml($option, $selected = false)
{
$selectedHtml = $selected ? ' selected="selected"' : '';
if ($this->getIsRenderToJsTemplate() === true) {
$selectedHtml .= ' <%= option_extra_attrs.option_' . self::calcOptionHash($option['value']) . ' %>';
}
$params = '';
if (!empty($option['params']) && is_array($option['params'])) {
foreach ($option['params'] as $key => $value) {
if (is_array($value)) {
foreach ($value as $keyMulti => $valueMulti) {
$params .= sprintf(' %s="%s" ', $keyMulti, $this->escapeHtml($valueMulti));
}
} else {
$params .= sprintf(' %s="%s" ', $key, $this->escapeHtml($value));
}
}
}
return sprintf(
'<option value="%s"%s %s>%s</option>',
$this->escapeHtml($option['value']),
$selectedHtml,
$params,
$this->escapeHtml($option['label'])
);
}
/**
* Alias for toHtml()
*
* @return string
*/
public function getHtml()
{
return $this->toHtml();
}
/**
* Calculate CRC32 hash for option value
*
* @param string $optionValue Value of the option
* @return string
*/
public function calcOptionHash($optionValue)
{
return sprintf('%u', crc32($this->getName() . $this->getId() . $optionValue));
}
}