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