‪TYPO3CMS  9.5
OptgroupViewHelper.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
22 {
26  protected ‪$tagName = 'optgroup';
27 
31  public function ‪initializeArguments()
32  {
33  $this->registerUniversalTagAttributes();
34  $this->registerArgument('additionalAttributes', 'array', 'Additional tag attributes. They will be added directly to the resulting HTML tag.');
35  $this->registerArgument('data', 'array', 'Additional data-* attributes. They will each be added with a "data-" prefix.');
36  $this->registerTagAttribute('label', 'string', 'Human-readable label property for the generated optgroup tag');
37  $this->registerTagAttribute('disabled', 'boolean', 'If true, option group is rendered as disabled', false, false);
38  }
39 
43  public function ‪render()
44  {
45  if ($this->arguments['disabled']) {
46  $this->tag->addAttribute('disabled', 'disabled');
47  } else {
48  $this->tag->removeAttribute('disabled');
49  }
50 
51  $this->tag->setContent($this->renderChildren());
52  return $this->tag->render();
53  }
54 }
‪TYPO3\CMS\Fluid\ViewHelpers\Form\Select\OptgroupViewHelper\$tagName
‪string $tagName
Definition: OptgroupViewHelper.php:25
‪TYPO3\CMS\Fluid\ViewHelpers\Form\Select
Definition: OptgroupViewHelper.php:2
‪TYPO3\CMS\Fluid\ViewHelpers\Form\Select\OptgroupViewHelper
Definition: OptgroupViewHelper.php:22
‪TYPO3\CMS\Fluid\ViewHelpers\Form\Select\OptgroupViewHelper\render
‪string render()
Definition: OptgroupViewHelper.php:42
‪TYPO3\CMS\Fluid\ViewHelpers\Form\Select\OptgroupViewHelper\initializeArguments
‪initializeArguments()
Definition: OptgroupViewHelper.php:30
‪TYPO3\CMS\Fluid\ViewHelpers\Form\AbstractFormFieldViewHelper
Definition: AbstractFormFieldViewHelper.php:26