17 use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\ViewHelperNode;
54 parent::initializeArguments();
55 $this->registerArgument(
'label',
'string',
'label',
false,
'');
63 $label = $this->arguments[
'label'];
65 $this->tag->addAttribute(
'label', $label);
67 foreach ($this->childNodes as $childNode) {
68 if ($childNode instanceof ViewHelperNode) {
69 $options .= $childNode->evaluate($this->renderingContext);
72 $this->tag->setContent($options);
73 return $this->tag->render();