19 declare(strict_types=1);
43 $this->tpl = $DIC->ui()->mainTemplate();
44 $this->
lng = $DIC->language();
45 $this->
ctrl = $DIC->ctrl();
47 $this->gui = $a_parent_gui;
67 $this->tpl->setContent($a_form->getForm()->getHTML());
84 $form->setFormAction($this->
ctrl->getFormAction($this->gui,
"updateAction"));
89 $adt_form->setForm($form);
94 $adt_form->addToForm();
95 $adt_form->addJS($this->tpl);
98 $form->addCommandButton(
"updateAction", $this->
lng->txt(
"save"));
110 $valid = $adt_form->getForm()->checkInput();
112 $old_chksum = $this->
object->getProperties()->getCheckSum();
114 $adt_form->importFromPost();
115 $valid = $adt_form->validate();
117 $changed = ($old_chksum != $this->
object->getProperties()->getCheckSum());
121 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"form_input_not_valid"));
127 if ($this->
object->update()) {
128 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
131 foreach ($this->
object->getDBErrors() as $element_id => $codes) {
132 $element = $adt_form->getElement($element_id);
134 $element->setExternalErrors($this->
object->translateDBErrorCodes($codes));
138 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"form_input_not_valid"));
143 $this->
ctrl->redirect($this->gui,
"edit");
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
prepareFormElements(ilADTGroupFormBridge $a_adt_form)
Prepare/customize form elements.
updateAction()
Parse incoming values and update if valid PhpParamsInspection.
Class ilObjectGUI Basic methods of all Output classes.
__construct(ilObjectGUI $a_parent_gui)
Constructor Parent GUI is just needed for testing (ilCtrl)
editAction(?ilADTGroupFormBridge $a_form=null)
initObject()
Init ADT-based object.
initForm()
Init ADT-based form.
ADT based-object base class Currently "mixed" with ActiveRecord-pattern, could be splitted...
ilGlobalTemplateInterface $tpl
ADT based-object GUI base class.