TYPO3 CMS  TYPO3_6-2
FieldsetElementView.php
Go to the documentation of this file.
1 <?php
3 
23 
30  public function __construct(\TYPO3\CMS\Form\Domain\Model\Element\FieldsetElement $model, $spaces) {
31  parent::__construct($model, $spaces);
32  }
33 
37  public function render() {
38  $content = '';
39  if ($this->model->additionalIsSet('legend')) {
40  $content = $this->model->getAdditionalValue('legend') . chr(10);
41  }
42  $content .= $this->renderChildren($this->model->getElements(), $this->spaces + 4);
43  return str_repeat(chr(32), $this->spaces) . $content;
44  }
45 
46 }
__construct(\TYPO3\CMS\Form\Domain\Model\Element\FieldsetElement $model, $spaces)