3 declare(strict_types=1);
5 use \ILIAS\UI\Component\Input\Container\Form;
6 use \ILIAS\UI\Component\Input;
94 $this->iass_access = $this->
object->accessHandler();
105 $this->lng->loadLanguageModule(
'content');
106 $this->lng->loadLanguageModule(
'obj');
107 $this->lng->loadLanguageModule(
'cntr');
114 $this->lng->txt(
"edit"),
115 $this->ctrl->getLinkTarget($this,
'edit')
118 self::TAB_COMMON_SETTINGS,
119 $this->lng->txt(
"obj_features"),
120 $this->ctrl->getLinkTargetByClass(
123 ilIndividualAssessmentCommonSettingsGUI::class
130 $this->lng->txt(
"iass_edit_info"),
131 $this->ctrl->getLinkTarget($this,
'editInfo')
137 if (!$this->iass_access->mayEditObject()) {
140 $next_class = $this->ctrl->getNextClass();
141 $cmd = $this->ctrl->getCmd();
142 switch ($next_class) {
143 case 'ilindividualassessmentcommonsettingsgui':
144 $this->tabs_gui->activateSubTab(self::TAB_COMMON_SETTINGS);
145 $this->ctrl->forwardCommand($this->common_settings_gui);
167 $settings = $this->
object->getSettings();
168 $field = $settings->toFormInput(
169 $this->input_factory->field(),
173 return $this->input_factory->container()->form()->standard(
174 $this->ctrl->getFormAction($this,
"update"),
177 ->withAdditionalTransformation(
178 $this->refinery->custom()->transformation(
function ($v) {
179 return array_shift($v);
186 $this->tabs_gui->setSubTabActive(self::TAB_EDIT);
188 $this->tpl->setContent($this->ui_renderer->render($form));
194 $form = $form->withRequest($this->http_request);
196 $settings = $form->getData();
198 if (!is_null($settings)) {
199 $this->
object->setSettings($settings);
200 $this->
object->update();
201 ilUtil::sendSuccess($this->lng->txt(
"iass_settings_saved"),
true);
202 $this->ctrl->redirect($this,
"edit");
204 $this->tpl->setContent($this->ui_renderer->render($form));
210 $this->tabs_gui->setSubTabActive(self::TAB_EDIT_INFO);
212 $this->tpl->setContent($this->ui_renderer->render($form));
218 $form = $form->withRequest($this->http_request);
220 $info_settings = $form->getData();
222 if (!is_null($info_settings)) {
223 $this->
object->setInfoSettings($info_settings);
224 $this->
object->updateInfo();
225 ilUtil::sendSuccess($this->lng->txt(
"iass_settings_saved"),
true);
226 $this->ctrl->redirect($this,
"editInfo");
228 $this->tpl->setContent($this->ui_renderer->render($form));
234 $info_settings = $this->
object->getInfoSettings();
235 $field = $info_settings->toFormInput(
236 $this->input_factory->field(),
240 return $this->input_factory->container()->form()->standard(
241 $this->ctrl->getFormAction($this,
"updateInfo"),
244 ->withAdditionalTransformation(
245 $this->refinery->custom()->transformation(
function ($v) {
246 return array_shift($v);
253 $this->error_object->raiseError($this->txt(
"msg_no_perm_read"), $this->error_object->WARNING);
An entity that renders components to a string output.
This class provides processing control methods.
For the purpose of streamlining the grading and learning-process status definition outside of tests...
Class ilGlobalPageTemplate.
addSubTab($a_id, $a_text, $a_link, $a_frame="")
Add a Subtab.
__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)
ilIndividualAssessmentSettingsGUI: ilIndividualAssessmentCommonSettingsGUI
const TAB_COMMON_SETTINGS