TYPO3 CMS  TYPO3_6-2
ContainerJsonElement.php
Go to the documentation of this file.
1 <?php
3 
23 
29  public $elementContainer = array(
30  'hasDragAndDrop' => TRUE,
31  'items' => array()
32  );
33 
40  public function addElement(\TYPO3\CMS\Form\Domain\Model\Json\AbstractJsonElement $element) {
41  $this->elementContainer['items'][] = $element;
42  }
43 
44 }
addElement(\TYPO3\CMS\Form\Domain\Model\Json\AbstractJsonElement $element)