3 declare(strict_types=1);
16 if (count($this->elements)) {
20 $this->elements = array();
26 $this->elements[
$name] =
$factory->getFormBridgeForInstance($element);
28 $this->elements[
$name]->setElementId((
string)
$name);
41 if (array_key_exists($a_name, $this->elements)) {
42 return $this->elements[$a_name];
51 $section->setTitle($this->
getTitle());
54 $section->setInfo($this->
getInfo());
57 $this->
getForm()->addItem($section);
61 foreach ($this->elements as $element) {
62 $element->addToForm();
69 foreach ($this->elements as $element) {
70 $element->addJS($a_tpl);
77 foreach ($this->elements as $element) {
79 $parent = $element->getParentElement();
86 if ($element->shouldBeImportedFromPost(
$parent)) {
87 $element->importFromPost();
97 foreach ($this->
getElements() as $element_id => $element) {
98 if ($element->isRequired() && $element->getADT()->isNull()) {
99 $field = $this->
getForm()->getItemByPostVar($element_id);
100 $field->setAlert($this->
lng->txt(
"msg_input_is_required"));
103 elseif (!$element->validate()) {
108 if (!$this->
getADT()->isValid()) {
113 $mess = $this->
getADT()->getValidationErrorsByElements();
114 foreach ($mess as $error_code => $element_id) {
115 $tmp[$element_id][] = $this->
getADT()->translateErrorCode($error_code);
118 foreach ($tmp as $element_id =>
$errors) {
119 $field = $this->
getForm()->getItemByPostVar((
string) $element_id);
120 $field->setAlert(implode(
"<br />",
$errors));