TYPO3 CMS  TYPO3_6-2
AbstractElementView.php
Go to the documentation of this file.
1 <?php
3 
22 abstract class AbstractElementView {
23 
27  protected $model;
28 
32  protected $spaces;
33 
40  public function __construct(\TYPO3\CMS\Form\Domain\Model\Element\AbstractElement $model, $spaces) {
41  $this->model = $model;
42  $this->spaces = (int)$spaces;
43  }
44 
45 }
__construct(\TYPO3\CMS\Form\Domain\Model\Element\AbstractElement $model, $spaces)