elements = $elements; parent::__construct($data, $options); } /** * @inheritDoc */ protected function initForm(): void { /** @noinspection PhpUnhandledExceptionInspection */ $this->form = tao_helpers_form_FormFactory::getForm('test', $this->options); } /** * @inheritDoc */ protected function initElements(): void { foreach ($this->elements as $element) { $this->form->addElement($element); } } }