19 declare(strict_types=1);
72 $this->iass_access = $this->
object->accessHandler();
74 $this->input_factory = $factory;
83 $this->
lng->loadLanguageModule(
'content');
84 $this->
lng->loadLanguageModule(
'obj');
85 $this->
lng->loadLanguageModule(
'cntr');
92 $this->
lng->txt(
"general"),
93 $this->
ctrl->getLinkTarget($this,
'edit')
96 self::TAB_COMMON_SETTINGS,
97 $this->
lng->txt(
"obj_features"),
98 $this->
ctrl->getLinkTargetByClass(
101 ilIndividualAssessmentCommonSettingsGUI::class
108 $this->
lng->txt(
"iass_edit_info"),
109 $this->
ctrl->getLinkTarget($this,
'editInfo')
115 if (!$this->iass_access->mayEditObject()) {
118 $next_class = $this->
ctrl->getNextClass();
119 $cmd = $this->
ctrl->getCmd();
120 switch ($next_class) {
121 case 'ilindividualassessmentcommonsettingsgui':
122 $this->tabs_gui->activateSubTab(self::TAB_COMMON_SETTINGS);
123 $this->
ctrl->forwardCommand($this->common_settings_gui);
145 $settings = $this->
object->getSettings();
146 $field = $settings->toFormInput(
147 $this->input_factory->field(),
153 $online = $this->
object->getObjectProperties()->getPropertyIsOnline()->toForm(
155 $this->input_factory->field(),
158 $availability = $this->input_factory->field()->section(
160 $this->
lng->txt(
'iass_settings_availability')
162 $this->
refinery->custom()->transformation(
function ($v) {
163 return array_shift($v);
167 return $this->input_factory->container()->form()->standard(
168 $this->
ctrl->getFormAction($this,
"update"),
169 [$field, $availability]
173 protected function edit(): void
175 $this->tabs_gui->setSubTabActive(self::TAB_EDIT);
177 $this->tpl->setContent($this->ui_renderer->render($form));
183 $form = $form->withRequest($this->http_request);
185 $settings = $form->getData();
187 if (!is_null($settings)) {
188 $this->
object->setSettings($settings[0]);
189 $this->
object->update();
191 $this->
object->getObjectProperties()->storePropertyIsOnline($settings[1]);
193 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"settings_saved"),
true);
194 $this->
ctrl->redirect($this,
"edit");
196 $this->tpl->setContent($this->ui_renderer->render($form));
202 $this->tabs_gui->setSubTabActive(self::TAB_EDIT_INFO);
204 $this->tpl->setContent($this->ui_renderer->render($form));
210 $form = $form->withRequest($this->http_request);
212 $info_settings = $form->getData();
214 if (!is_null($info_settings)) {
215 $this->
object->setInfoSettings($info_settings);
216 $this->
object->updateInfo();
217 $this->
ctrl->redirect($this,
"editInfo");
219 $this->tpl->setContent($this->ui_renderer->render($form));
225 $info_settings = $this->
object->getInfoSettings();
226 $field = $info_settings->toFormInput(
227 $this->input_factory->field(),
231 return $this->input_factory->container()->form()->standard(
232 $this->
ctrl->getFormAction($this,
"updateInfo"),
236 $this->
refinery->custom()->transformation(
function ($v) {
237 return array_shift($v);
244 $this->error_object->raiseError($this->
lng->txt(
"msg_no_perm_read"), $this->error_object->WARNING);
ilObjIndividualAssessment $object
For the purpose of streamlining the grading and learning-process status definition outside of tests...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
IndividualAssessmentAccessHandler $iass_access
ilGlobalPageTemplate $tpl
Mechanic regarding the access control and roles of an objet goes here.
addSubTab(string $a_id, string $a_text, string $a_link, string $a_frame="")
Input Factory $input_factory
ilErrorHandling $error_object
__construct(ilObjIndividualAssessment $object, ilCtrl $ctrl, ilGlobalPageTemplate $tpl, ilLanguage $lng, ilTabsGUI $tabs_gui, Input\Factory $factory, Refinery\Factory $refinery, UI\Renderer $ui_renderer, $http_request, ilErrorHandling $error_object, ilIndividualAssessmentCommonSettingsGUI $common_settings_gui)
getSubTabs(ilTabsGUI $tabs)
ilIndividualAssessmentCommonSettingsGUI $common_settings_gui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilIndividualAssessmentSettingsGUI: ilIndividualAssessmentCommonSettingsGUI
const TAB_COMMON_SETTINGS
Refinery Factory $refinery