107 parent::initializeArguments();
108 $this->registerUniversalTagAttributes();
109 $this->registerTagAttribute(
'size',
'string',
'Size of input field');
110 $this->registerTagAttribute(
'disabled',
'string',
'Specifies that the input element should be disabled when the page loads');
111 $this->registerArgument(
'options',
'array',
'Associative array with internal IDs as key, and the values are displayed in the select box. Can be combined with or replaced by child f:form.select.* nodes.');
112 $this->registerArgument(
'optionsAfterContent',
'boolean',
'If true, places auto-generated option tags after those rendered in the tag content. If false, automatic options come first.',
false,
false);
113 $this->registerArgument(
'optionValueField',
'string',
'If specified, will call the appropriate getter on each object to determine the value.');
114 $this->registerArgument(
'optionLabelField',
'string',
'If specified, will call the appropriate getter on each object to determine the label.');
115 $this->registerArgument(
'sortByOptionLabel',
'boolean',
'If true, List will be sorted by label.',
false,
false);
116 $this->registerArgument(
'selectAllByDefault',
'boolean',
'If specified options are selected if none was set before.',
false,
false);
117 $this->registerArgument(
'errorClass',
'string',
'CSS class to set if there are errors for this ViewHelper',
false,
'f3-form-error');
118 $this->registerArgument(
'prependOptionLabel',
'string',
'If specified, will provide an option at first position with the specified label.');
119 $this->registerArgument(
'prependOptionValue',
'string',
'If specified, will provide an option at first position with the specified value.');
120 $this->registerArgument(
'multiple',
'boolean',
'If set multiple options may be selected.',
false,
false);
121 $this->registerArgument(
'required',
'boolean',
'If set no empty value is allowed.',
false,
false);
131 if (isset($this->arguments[
'required']) && $this->arguments[
'required']) {
132 $this->tag->addAttribute(
'required',
'required');
135 if (isset($this->arguments[
'multiple']) && $this->arguments[
'multiple']) {
136 $this->tag->addAttribute(
'multiple',
'multiple');
139 $this->tag->addAttribute(
'name', $name);
142 $viewHelperVariableContainer = $this->renderingContext->getViewHelperVariableContainer();
152 if (isset($this->arguments[
'multiple']) && $this->arguments[
'multiple']) {
157 $optionsCount = count($options);
158 for ($i = 1; $i < $optionsCount; $i++) {
164 $viewHelperVariableContainer->addOrUpdate(
166 'registerFieldNameForFormTokenGeneration',
171 $viewHelperVariableContainer->addOrUpdate(self::class,
'selectedValue', $this->
getSelectedValue());
174 $childContent = $this->renderChildren();
175 $viewHelperVariableContainer->remove(self::class,
'selectedValue');
176 $viewHelperVariableContainer->remove(self::class,
'registerFieldNameForFormTokenGeneration');
177 if (isset($this->arguments[
'optionsAfterContent']) && $this->arguments[
'optionsAfterContent']) {
178 $tagContent = $childContent . $tagContent;
180 $tagContent .= $childContent;
182 $tagContent = $prependContent . $tagContent;
184 $this->tag->forceClosingTag(
true);
185 $this->tag->setContent($tagContent);
186 $content .= $this->tag->render();
198 if ($this->hasArgument(
'prependOptionLabel')) {
199 $value = $this->hasArgument(
'prependOptionValue') ? $this->arguments[
'prependOptionValue'] :
'';
200 $label = $this->arguments[
'prependOptionLabel'];
215 foreach ($options as $value => $label) {
229 if (!is_array($this->arguments[
'options']) && !$this->arguments[
'options'] instanceof \Traversable) {
233 $optionsArgument = $this->arguments[
'options'];
234 foreach ($optionsArgument as $key => $value) {
235 if (is_object($value) || is_array($value)) {
236 if ($this->hasArgument(
'optionValueField')) {
238 if (is_object($key)) {
239 if (method_exists($key,
'__toString')) {
242 throw new \TYPO3Fluid\Fluid\Core\ViewHelper\Exception(
'Identifying value for object of class "' . get_class($value) .
'" was an object.', 1247827428);
245 } elseif ($this->persistenceManager->getIdentifierByObject($value) !==
null) {
247 $key = $this->persistenceManager->getIdentifierByObject($value);
248 } elseif (method_exists($value,
'__toString')) {
249 $key = (string)$value;
251 throw new \TYPO3Fluid\Fluid\Core\ViewHelper\Exception(
'No identifying value for object of class "' . get_class($value) .
'" found.', 1247826696);
253 if ($this->hasArgument(
'optionLabelField')) {
255 if (is_object($value)) {
256 if (method_exists($value,
'__toString')) {
257 $value = (string)$value;
259 throw new \TYPO3Fluid\Fluid\Core\ViewHelper\Exception(
'Label value for object of class "' . get_class($value) .
'" was an object without a __toString() method.', 1247827553);
262 } elseif (method_exists($value,
'__toString')) {
263 $value = (string)$value;
264 } elseif ($this->persistenceManager->getIdentifierByObject($value) !==
null) {
266 $value = $this->persistenceManager->getIdentifierByObject($value);
269 $options[$key] = $value;
271 if ($this->arguments[
'sortByOptionLabel']) {
272 asort($options, SORT_LOCALE_STRING);
289 if ($this->hasArgument(
'multiple')) {
290 if (
$selectedValue ===
null && $this->arguments[
'selectAllByDefault'] ===
true) {
309 if (!is_array($value) && !$value instanceof \Traversable) {
312 $selectedValues = [];
313 foreach ($value as $selectedValueElement) {
316 return $selectedValues;
327 if (is_object($valueElement)) {
328 if ($this->hasArgument(
'optionValueField')) {
329 return \TYPO3\CMS\Extbase\Reflection\ObjectAccess::getPropertyPath($valueElement, $this->arguments[
'optionValueField']);
332 if ($this->persistenceManager->getIdentifierByObject($valueElement) !==
null) {
333 return $this->persistenceManager->getIdentifierByObject($valueElement);
335 return (
string)$valueElement;
337 return $valueElement;
350 $output =
'<option value="' . htmlspecialchars($value) .
'"';
354 $output .=
'>' . htmlspecialchars($label) .
'</option>';