3 declare(strict_types=1);
51 $cmd = $this->ctrl->getCmd();
60 throw new Exception(
'Unknown command '.$cmd);
69 $this->tpl->setContent($form->getHTML());
75 $form->setFormAction($this->ctrl->getFormAction($this));
76 $form->setTitle($this->
txt(
'obj_features'));
77 $form->addCommandButton(self::CMD_SAVE, $this->
txt(
'save'));
78 $form->addCommandButton(self::CMD_EDIT, $this->
txt(
'cancel'));
89 $this->object->getId(),
101 $section_appearance->setTitle($this->
txt(
'cont_presentation'));
102 $form->
addItem($section_appearance);
103 $form_service = $this->object_service->commonSettings()->legacyForm($form, $this->
object);
104 $form = $form_service->addTitleIconVisibility();
105 $form = $form_service->addTopActionsVisibility();
106 $form = $form_service->addIcon();
107 $form = $form_service->addTileImage();
114 if(! $form->checkInput()) {
115 $form->setValuesByPost();
121 $this->object->getId(),
129 $form_service = $this->object_service->commonSettings()->legacyForm($form, $this->
object);
130 $form_service->saveTitleIconVisibility();
131 $form_service->saveTopActionsVisibility();
132 $form_service->saveIcon();
133 $form_service->saveTileImage();
135 ilUtil::sendSuccess($this->lng->txt(
'iass_settings_saved'),
true);
136 $this->ctrl->redirect($this, self::CMD_EDIT);
139 protected function txt(
string $code) : string
141 return $this->lng->txt($code);
This class provides processing control methods.
For the purpose of streamlining the grading and learning-process status definition outside of tests...
editSettings(ilPropertyFormGUI $form=null)
addCommonFieldsToForm(ilPropertyFormGUI $form)
static updateServiceSettingsForm($a_obj_id, ilPropertyFormGUI $form, $services)
Update service settings.
static initServiceSettingsForm($a_obj_id, ilPropertyFormGUI $form, $services)
Init service settings form.
const ORGU_POSITION_ACCESS
__construct(ilObjIndividualAssessment $object, ilCtrl $ctrl, ilGlobalTemplateInterface $tpl, ilLanguage $lng, ilObjectService $object_service)
addServiceSettingsToForm(ilPropertyFormGUI $form)