85 $this->tpl = $DIC->ui()->mainTemplate();
96 $this->component_repository,
97 $testGUI->getTestObject()
99 $this->request = $DIC->http()->request();
100 $this->ui_factory = $DIC->ui()->factory();
101 $this->ui_renderer = $DIC->ui()->renderer();
115 if (!$this->
access->checkAccess(
"write",
"", $this->testGUI->getRefId())) {
116 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"cannot_edit_test"),
true);
117 $this->
ctrl->redirect($this->testGUI,
"infoScreen");
125 $nextClass = $this->
ctrl->getNextClass();
127 switch ($nextClass) {
129 $cmd = $this->
ctrl->getCmd(self::CMD_SHOW_FORM) .
'Cmd';
136 $this->tpl->addJavascript(
"./Services/JavaScript/js/Basic.js");
138 if ($this->testOBJ->isDynamicTest()) {
139 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"ctm_cannot_be_changed"));
143 if ($form === null) {
147 $this->tpl->setContent($this->
ctrl->getHTML($form));
153 require_once
'Modules/Test/classes/confirmations/class.ilTestSettingsChangeConfirmationGUI.php';
156 $confirmation->setFormAction($this->
ctrl->getFormAction($this));
157 $confirmation->setCancel($this->
lng->txt(
'cancel'), self::CMD_SHOW_FORM);
158 $confirmation->setConfirm($this->
lng->txt(
'confirm'), self::CMD_CONFIRMED_SAVE_FORM);
160 $confirmation->setOldQuestionSetType($oldQuestionSetType);
161 $confirmation->setNewQuestionSetType($newQuestionSetType);
162 $confirmation->setQuestionLossInfoEnabled($hasQuestionsWithoutQuestionpool);
163 $confirmation->build();
165 $confirmation->populateParametersFromPropertyForm($form, $this->activeUser->getTimeZone());
167 $this->tpl->setContent($this->
ctrl->getHTML($confirmation));
172 if (!$this->settingsTemplate) {
176 $link = $this->ui_factory->link()->standard(
177 $this->
lng->txt(
'test_using_template_link'),
178 $this->
ctrl->getLinkTarget($this, self::CMD_SHOW_RESET_TPL_CONFIRM)
180 if ($this->settingsTemplate->isAvailable()) {
181 $title = $this->settingsTemplate->getTitle();
182 if ($this->settingsTemplate->getAutoGenerated()) {
183 $title = $this->
lng->txt($title);
186 $message = sprintf($this->
lng->txt(
'test_using_template'), $title, $this->ui_renderer->render($link));
188 $message = sprintf($this->
lng->txt(
'test_using_removed_template'), $this->ui_renderer->render($link));
191 $this->tpl->setOnScreenMessage(
192 $this->settingsTemplate->isAvailable() ?
'info' :
'failure',
194 !$this->settingsTemplate->isAvailable()
210 if ($isConfirmedSave) {
214 $_FILES[
'tile_image'] = array(
215 'name' =>
'',
'type' =>
'',
'size' =>
'',
'tmp_name' =>
'',
'error' =>
'' 221 $errors = !$form->checkInput();
223 $values = $this->request->getParsedBody();
224 if (!isset($values[
'kiosk_options'])) {
225 $values[
'kiosk_options'] = [];
227 if (!isset($values[
'instant_feedback_contents'])) {
228 $values[
'instant_feedback_contents'] = [];
230 if (!isset($values[
'list_of_questions_options'])) {
231 $values[
'list_of_questions_options'] = [];
233 if (!isset($values[
'pass_waiting'])) {
234 $values[
'pass_waiting'] = [];
238 $form->setValuesByArray($values);
239 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
245 $currentQuestionSetConfig = $this->testQuestionSetConfigFactory->getQuestionSetConfig();
246 if ($form->getInput(
'online') && !$this->testOBJ->isComplete($currentQuestionSetConfig)) {
247 $form->setValuesByArray($values);
248 $form->getItemByPostVar(
'online')->setAlert(
249 $this->
lng->txt(
"cannot_switch_to_online_no_questions_andor_no_mark_steps")
252 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
258 if ($form->getInput(
'obligations_enabled') && $form->getInput(
'answer_fixation_handling') != self::ANSWER_FIXATION_NONE) {
259 $form->setValuesByArray($values);
260 $form->getItemByPostVar(
'obligations_enabled')->setAlert($this->
lng->txt(
'tst_conflicting_setting'));
261 $form->getItemByPostVar(
'answer_fixation_handling')->setAlert($this->
lng->txt(
'tst_conflicting_setting'));
263 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'tst_settings_conflict_message'));
268 $conflictModes = array(self::ANSWER_FIXATION_ON_FOLLOWUP_QUESTION, self::ANSWER_FIXATION_ON_IFB_OR_FUQST);
270 if ($form->getInput(
'postpone') && in_array($form->getInput(
'answer_fixation_handling'), $conflictModes)) {
271 $form->setValuesByArray($values);
272 $form->getItemByPostVar(
'postpone')->setAlert($this->
lng->txt(
'tst_conflicting_setting'));
273 $form->getItemByPostVar(
'answer_fixation_handling')->setAlert($this->
lng->txt(
'tst_conflicting_setting'));
275 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'tst_settings_conflict_message'));
280 if ($form->getInput(
'chb_shuffle_questions') && in_array($form->getInput(
'answer_fixation_handling'), $conflictModes)) {
281 $form->setValuesByArray($values);
282 $form->getItemByPostVar(
'chb_shuffle_questions')->setAlert($this->
lng->txt(
'tst_conflicting_setting'));
283 $form->getItemByPostVar(
'answer_fixation_handling')->setAlert($this->
lng->txt(
'tst_conflicting_setting'));
285 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'tst_settings_conflict_message'));
295 $questionSetTypeRelatingDataCleanupRequired =
false;
297 $oldQuestionSetType = $this->testOBJ->getQuestionSetType();
299 $newQuestionSetType = $form->getInput(
'question_set_type');
301 if (!$this->testOBJ->participantDataExist() && $newQuestionSetType != $oldQuestionSetType) {
302 $oldQuestionSetConfig = $this->testQuestionSetConfigFactory->getQuestionSetConfigByType();
304 if ($oldQuestionSetConfig->doesQuestionSetRelatedDataExist()) {
305 if (!$isConfirmedSave) {
306 $form->setValuesByArray($values);
312 $this->testOBJ->hasQuestionsWithoutQuestionpool()
326 $questionSetTypeRelatingDataCleanupRequired =
true;
329 if ($form->getInput(
'online')) {
330 $form->getItemByPostVar(
'online')->setChecked(
false);
332 if (!$this->testOBJ->getOfflineStatus()) {
333 $infoMsg[] = $this->
lng->txt(
"tst_set_offline_due_to_switched_question_set_type_setting");
335 $infoMsg[] = $this->
lng->txt(
"tst_cannot_online_due_to_switched_quest_set_type_setting");
340 $newQuestionSetType = $oldQuestionSetType;
346 $form->getItemByPostVar(
'chb_use_previous_answers')->setChecked(
false);
349 $ending_time = $form->getInput(
'ending_time');
350 $starting_time = $form->getInput(
'starting_time');
351 if (is_string($ending_time) && $ending_time !==
'' 352 && is_string($starting_time) && $starting_time !==
'' 353 && ($starting_time > $ending_time
356 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"tst_ending_time_before_starting_time"),
true);
357 $form->setValuesByArray($values);
358 $form->getItemByPostVar(
'starting_time')->setDate(
new ilDateTime($this->testOBJ->getStartingTime(),
IL_CAL_UNIX));
369 if ($questionSetTypeRelatingDataCleanupRequired) {
370 $oldQuestionSetConfig->removeQuestionSetRelatedData();
375 if (!$this->testOBJ->participantDataExist() && !$this->testOBJ->getFixedParticipants()) {
376 foreach ($this->testOBJ->getInvitedUsers() as $usrId => $usrData) {
377 $this->testOBJ->disinviteUser($usrId);
383 if (count($infoMsg)) {
384 $this->tpl->setOnScreenMessage(
'info', implode(
'<br />', $infoMsg),
true);
387 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
388 $this->
ctrl->redirect($this, self::CMD_SHOW_FORM);
398 $confirmationGUI->setFormAction($this->
ctrl->getFormAction($this));
399 $confirmationGUI->setHeaderText($this->
lng->txt(
"test_confirm_template_reset"));
400 $confirmationGUI->setCancel($this->
lng->txt(
'cancel'), self::CMD_SHOW_FORM);
401 $confirmationGUI->setConfirm($this->
lng->txt(
'confirm'), self::CMD_CONFIRMED_RESET_TPL);
403 $this->tpl->setContent($this->
ctrl->getHTML($confirmationGUI));
411 $this->testOBJ->setTemplate(null);
412 $this->testOBJ->saveToDB();
414 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"test_template_reset"),
true);
415 $this->
ctrl->redirect($this, self::CMD_SHOW_FORM);
428 if (!$form->
getInput(
'skill_service')) {
440 return $ilSetting->get(
'char_selector_availability') > 0;
446 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
448 $form->setFormAction($this->
ctrl->getFormAction($this));
449 $form->addCommandButton(self::CMD_SAVE_FORM, $this->
lng->txt(
"save"));
450 $form->setTableWidth(
"100%");
451 $form->setId(
"test_properties");
464 include_once
'Modules/Test/classes/class.ilECSTestSettings.php';
466 $ecs->addSettingsToForm($form,
'tst');
471 $this->testOBJ->getType()
477 if ($orgunitServiceActive || $skillServiceActive) {
479 $otherHead->setTitle($this->
lng->txt(
'obj_features'));
480 $form->addItem($otherHead);
483 require_once
'Services/Object/classes/class.ilObjectServiceSettingsGUI.php';
489 if ($skillServiceActive) {
490 $skillService =
new ilCheckboxInputGUI($this->
lng->txt(
'tst_activate_skill_service'),
'skill_service');
491 $skillService->
setInfo($this->
lng->txt(
'tst_activate_skill_service_desc'));
492 $skillService->setChecked($this->testOBJ->isSkillServiceEnabled());
493 if ($this->testOBJ->participantDataExist()) {
494 $skillService->setDisabled(
true);
496 $form->addItem($skillService);
517 if (!$this->testOBJ->participantDataExist()) {
520 $this->testOBJ->setSkillServiceEnabled((
bool) $form->
getInput(
'skill_service'));
524 require_once
'Services/Object/classes/class.ilObjectServiceSettingsGUI.php';
530 $this->testOBJ->saveToDb(
true);
533 include_once
'Modules/Test/classes/class.ilECSTestSettings.php';
535 $ecs->handleSettingsUpdate();
544 $header->setTitle($this->
lng->txt(
"tst_general_properties"));
549 include_once
'Services/MetaData/classes/class.ilMD.php';
550 $md_obj =
new ilMD($this->testOBJ->getId(), 0,
"tst");
554 $title->setRequired(
true);
555 $title->setMaxLength(255);
556 if ($md_section !== null) {
557 $title->setValue($md_section->getTitle());
561 if ($md_section !== null) {
562 $ids = $md_section->getDescriptionIds();
572 $desc_obj = $md_section->getDescription(array_pop($ids));
574 if ($desc_obj !== null) {
575 $desc->setValue($desc_obj->getDescription());
583 $fixed->
setInfo($this->
lng->txt(
'test_question_set_type_fixed_info'));
584 $question_set_type->addOption($fixed);
587 $random->
setInfo($this->
lng->txt(
'test_question_set_type_random_info'));
588 $question_set_type->addOption($random);
589 if ($this->testOBJ->participantDataExist()) {
590 $question_set_type->setDisabled(
true);
593 $question_set_type->setValue($this->testOBJ->getQuestionSetType());
594 $form->
addItem($question_set_type);
598 if ($this->testOBJ->participantDataExist()) {
601 $rb =
new ilRadioOption($this->
lng->txt(
'tst_anonymity_no_anonymization'), 0);
602 $anonymity->addOption($rb);
603 $rb =
new ilRadioOption($this->
lng->txt(
'tst_anonymity_anonymous_test'), 1);
604 $anonymity->addOption($rb);
605 $anonymity->
setValue($this->testOBJ->getAnonymity());
614 $md_obj =
new ilMD($this->testOBJ->getId(), 0,
"tst");
617 if ($md_section === null) {
625 $md_desc_ids = $md_section->getDescriptionIds();
627 $md_desc = $md_section->getDescription(array_pop($md_desc_ids));
631 $md_desc = $md_section->addDescription();
638 $this->testOBJ->setOfflineStatus(!$form->
getInput(
'online'));
639 $this->testOBJ->update();
641 if (!$this->testOBJ->participantDataExist()) {
644 $this->testOBJ->setQuestionSetType($form->
getInput(
'question_set_type'));
649 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'anonymity')) {
650 $this->testOBJ->setAnonymity((
int) $form->
getInput(
'anonymity'));
659 include_once
"Services/Object/classes/class.ilObjectActivation.php";
660 $this->
lng->loadLanguageModule(
'rep');
663 $section->setTitle($this->
lng->txt(
'rep_activation_availability'));
667 $act_obj_info = $act_ref_info =
"";
669 $act_obj_info =
' ' . $this->
lng->txt(
'rep_activation_online_object_info');
670 $act_ref_info = $this->
lng->txt(
'rep_activation_access_ref_info');
674 $online->
setChecked(!$this->testOBJ->getOfflineStatus());
675 $online->setInfo($this->
lng->txt(
'tst_activation_online_info') . $act_obj_info);
679 $act_type->
setChecked($this->testOBJ->isActivationLimited());
681 include_once
"Services/Form/classes/class.ilDateDurationInputGUI.php";
684 $dur->setShowTime(
true);
685 $start_date = $this->testOBJ->getActivationStartingTime();
687 $dur->setStartText($this->
lng->txt(
'rep_activation_limited_start'));
688 $end_date = $this->testOBJ->getActivationEndingTime();
690 $dur->setEndText($this->
lng->txt(
'rep_activation_limited_end'));
691 $act_type->addSubItem($dur);
693 $visible =
new ilCheckboxInputGUI($this->
lng->txt(
'rep_activation_limited_visibility'),
'activation_visibility');
694 $visible->
setInfo($this->
lng->txt(
'tst_activation_limited_visibility_info'));
695 $visible->setChecked((
bool) $this->testOBJ->getActivationVisibility());
696 $act_type->addSubItem($visible);
707 if ($form->
getInput(
'activation_type')) {
708 $this->testOBJ->setActivationLimited(
true);
709 $this->testOBJ->setActivationVisibility($form->
getInput(
'activation_visibility'));
712 $this->testOBJ->setActivationStartingTime($period->getStart()->get(
IL_CAL_UNIX));
713 $this->testOBJ->setActivationEndingTime($period->getEnd()->get(
IL_CAL_UNIX));
715 $this->testOBJ->setActivationLimited(
false);
727 $section->setTitle($this->
lng->txt(
'tst_presentation_settings_section'));
730 $DIC->object()->commonSettings()->legacyForm($form, $this->testOBJ)->addTileImage();
740 $DIC->object()->commonSettings()->legacyForm($form, $this->testOBJ)->saveTileImage();
749 $section->setTitle($this->
lng->txt(
'tst_settings_header_intro'));
754 $introEnabled->
setChecked($this->testOBJ->isIntroductionEnabled());
755 $introEnabled->setInfo($this->
lng->txt(
'tst_introduction_desc'));
759 $intro->setValue((
string) $this->testOBJ->prepareTextareaOutput($this->testOBJ->getIntroduction(),
false,
true));
762 $intro->setUseRte(
true);
763 $intro->addPlugin(
"latex");
764 $intro->addButton(
"latex");
765 $intro->setRTESupport($this->testOBJ->getId(),
"tst",
"assessment");
766 $intro->setRteTagSet(
'full');
767 $introEnabled->addSubItem($intro);
772 $showinfo->setChecked($this->testOBJ->getShowInfo());
773 $showinfo->setInfo($this->
lng->txt(
"showinfo_desc"));
783 $this->testOBJ->setIntroductionEnabled($form->
getInput(
'intro_enabled'));
786 $this->testOBJ->setIntroduction($form->
getInput(
'introduction'));
788 $this->testOBJ->setIntroduction(
'');
793 $this->testOBJ->setShowInfo($form->
getInput(
'showinfo'));
803 $header->setTitle($this->
lng->txt(
"tst_settings_header_execution"));
808 $startingtime->
setInfo($this->
lng->txt(
"tst_starting_time_desc"));
809 $startingtime->setShowTime(
true);
810 if ((
int) $this->testOBJ->getStartingTime() !== 0) {
813 $startingtime->setDate(null);
816 if ($this->testOBJ->participantDataExist()) {
817 $startingtime->setDisabled(
true);
822 $endingtime->
setInfo($this->
lng->txt(
"tst_ending_time_desc"));
823 $endingtime->setShowTime(
true);
824 if ((
int) $this->testOBJ->getEndingTime() !== 0) {
827 $endingtime->setDate(null);
834 $pwEnabled->
setChecked((
bool) $this->testOBJ->isPasswordEnabled());
835 $pwEnabled->setInfo($this->
lng->txt(
"tst_password_details"));
836 $password =
new ilTextInputGUI($this->
lng->txt(
"tst_password_enter"),
"password");
837 $password->setRequired(
true);
838 $password->setSize(20);
839 $password->setMaxLength(20);
840 $password->setValue($this->testOBJ->getPassword());
841 $pwEnabled->addSubItem($password);
845 $fixedparticipants =
new ilCheckboxInputGUI($this->
lng->txt(
'participants_invitation'),
"fixedparticipants");
847 $fixedparticipants->setChecked($this->testOBJ->getFixedParticipants());
848 $fixedparticipants->setInfo($this->
lng->txt(
"participants_invitation_description"));
849 if ($this->testOBJ->participantDataExist()) {
850 $fixedparticipants->setDisabled(
true);
852 $form->
addItem($fixedparticipants);
856 $simulLimited->
setInfo($this->
lng->txt(
"tst_allowed_users_desc"));
857 $simulLimited->setChecked((
bool) $this->testOBJ->isLimitUsersEnabled());
862 $simul->allowDecimals(
false);
863 $simul->setMinValue(1);
864 $simul->setMinvalueShouldBeGreater(
false);
866 $simul->setValue(($this->testOBJ->getAllowedUsers()) ? $this->testOBJ->getAllowedUsers() :
'');
867 $simulLimited->addSubItem($simul);
870 $idle =
new ilNumberInputGUI($this->
lng->txt(
"tst_allowed_users_time_gap"),
"allowedUsersTimeGap");
871 $idle->
setInfo($this->
lng->txt(
"tst_allowed_users_time_gap_desc"));
873 $idle->setSuffix($this->
lng->txt(
"seconds"));
874 $idle->setValue(($this->testOBJ->getAllowedUsersTimeGap()) ? $this->testOBJ->getAllowedUsersTimeGap() : 300);
875 $simulLimited->addSubItem($idle);
886 if (!$this->testOBJ->participantDataExist()) {
887 $starting_time = $form->
getInput(
'starting_time');
888 if (is_string($starting_time) && $starting_time !==
'') {
890 $this->testOBJ->setStartingTimeEnabled(
true);
892 $this->testOBJ->setStartingTime(null);
893 $this->testOBJ->setStartingTimeEnabled(
false);
897 $ending_time = $form->
getInput(
'ending_time');
898 if (is_string($ending_time) && $ending_time !==
'') {
900 $this->testOBJ->setEndingTimeEnabled(
true);
902 $this->testOBJ->setEndingTime(null);
903 $this->testOBJ->setEndingTimeEnabled(
false);
907 $this->testOBJ->setPasswordEnabled((
bool) $form->
getInput(
'password_enabled'));
909 if ($form->
getInput(
'password_enabled')) {
910 $this->testOBJ->setPassword($form->
getInput(
'password'));
912 $this->testOBJ->setPassword(
'');
916 if ($this->
formPropertyExists($form,
'fixedparticipants') && !$this->testOBJ->participantDataExist()) {
917 $this->testOBJ->setFixedParticipants((
bool) $form->
getInput(
'fixedparticipants'));
921 $this->testOBJ->setLimitUsersEnabled((
bool) $form->
getInput(
'limitUsers'));
923 if ($form->
getInput(
'limitUsers')) {
924 $this->testOBJ->setAllowedUsers($form->
getInput(
'allowedUsers'));
925 $this->testOBJ->setAllowedUsersTimeGap($form->
getInput(
'allowedUsersTimeGap'));
927 $this->testOBJ->setAllowedUsers(
'');
939 $header->setTitle($this->
lng->txt(
"tst_settings_header_test_run"));
944 $limitPasses->
setInfo($this->
lng->txt(
"tst_nr_of_tries_desc"));
945 $limitPasses->setChecked($this->testOBJ->getNrOfTries() > 0);
948 $nr_of_tries->allowDecimals(
false);
949 $nr_of_tries->setMinValue(1);
950 $nr_of_tries->setMinvalueShouldBeGreater(
false);
951 $nr_of_tries->setValue($this->testOBJ->getNrOfTries() ? $this->testOBJ->getNrOfTries() : 1);
952 $nr_of_tries->setRequired(
true);
953 $limitPasses->addSubItem($nr_of_tries);
955 $this->
lng->txt(
'tst_block_passes_after_passed'),
958 $blockAfterPassed->
setInfo($this->
lng->txt(
'tst_block_passes_after_passed_info'));
959 $blockAfterPassed->setChecked($this->testOBJ->isBlockPassesAfterPassedEnabled());
960 $limitPasses->addSubItem($blockAfterPassed);
961 if ($this->testOBJ->participantDataExist()) {
962 $limitPasses->setDisabled(
true);
963 $blockAfterPassed->setDisabled(
true);
964 $nr_of_tries->setDisabled(
true);
969 $pass_waiting_enabled =
new ilCheckboxInputGUI($this->
lng->txt(
'tst_pass_waiting_enabled'),
'pass_waiting_enabled');
970 $pass_waiting_enabled->
setInfo($this->
lng->txt(
'tst_pass_waiting_info'));
971 $pass_waiting_enabled->setChecked($this->testOBJ->isPassWaitingEnabled());
977 $duration->setShowDays(
true);
978 $duration->setShowHours(
true);
979 $duration->setShowMinutes(
true);
981 $pw_time_array = [
"00",
"000",
"00",
"00",
"00"];
982 if ($this->testOBJ->getPassWaiting() !==
'') {
983 $pw_time_array = explode(
':', $this->testOBJ->getPassWaiting());
986 $duration->setMonths((
int) $pw_time_array[0]);
987 $duration->setDays((
int) $pw_time_array[1]);
988 $duration->setHours((
int) $pw_time_array[2]);
989 $duration->setMinutes((
int) $pw_time_array[3]);
990 $duration->setRequired(
false);
991 $pass_waiting_enabled->addSubItem($duration);
993 $form->
addItem($pass_waiting_enabled);
997 $processing->
setInfo($this->
lng->txt(
"tst_processing_time_desc"));
998 $processing->setValue(1);
1001 $processing->setChecked(
true);
1003 $processing->setChecked($this->testOBJ->getEnableProcessingTime());
1007 $processingtime =
new ilNumberInputGUI($this->
lng->txt(
"tst_processing_time_duration"),
'processing_time');
1009 $processingtime->setMinValue(1);
1010 $processingtime->setMinvalueShouldBeGreater(
false);
1011 $processingtime->setValue($this->testOBJ->getProcessingTimeAsMinutes());
1012 $processingtime->setSize(5);
1013 $processingtime->setSuffix($this->
lng->txt(
'minutes'));
1014 $processingtime->setInfo($this->
lng->txt(
"tst_processing_time_duration_desc"));
1015 $processing->addSubItem($processingtime);
1019 $resetprocessing->setValue(1);
1020 $resetprocessing->setOptionTitle($this->
lng->txt(
"tst_reset_processing_time"));
1021 $resetprocessing->setChecked($this->testOBJ->getResetProcessingTime());
1022 $resetprocessing->setInfo($this->
lng->txt(
"tst_reset_processing_time_desc"));
1023 $processing->addSubItem($resetprocessing);
1026 if ($this->testOBJ->participantDataExist()) {
1027 $processing->setDisabled(
true);
1028 $processingtime->setDisabled(
true);
1029 $resetprocessing->setDisabled(
true);
1031 $duration->setDisabled(
true);
1032 $pass_waiting_enabled->setDisabled(
true);
1038 $kiosk->setChecked($this->testOBJ->getKioskMode());
1039 $kiosk->setInfo($this->
lng->txt(
"kiosk_description"));
1044 $kiosktitle->addOption(
new ilCheckboxOption($this->
lng->txt(
"kiosk_show_participant"),
'kiosk_participant',
''));
1046 if ($this->testOBJ->getShowKioskModeTitle()) {
1047 array_push($values,
'kiosk_title');
1049 if ($this->testOBJ->getShowKioskModeParticipant()) {
1050 array_push($values,
'kiosk_participant');
1052 $kiosktitle->setValue($values);
1053 $kiosktitle->setInfo($this->
lng->txt(
"kiosk_options_desc"));
1054 $kiosk->addSubItem($kiosktitle);
1058 $examIdInPass =
new ilCheckboxInputGUI($this->
lng->txt(
'examid_in_test_pass'),
'examid_in_test_pass');
1059 $examIdInPass->
setInfo($this->
lng->txt(
'examid_in_test_pass_desc'));
1060 $examIdInPass->setChecked($this->testOBJ->isShowExamIdInTestPassEnabled());
1061 $form->
addItem($examIdInPass);
1069 if (!$this->testOBJ->participantDataExist()) {
1072 if ($form->
getInput(
'limitPasses')) {
1073 $this->testOBJ->setNrOfTries($form->
getInput(
'nr_of_tries'));
1075 $this->testOBJ->setBlockPassesAfterPassedEnabled(
1076 (
bool) $form->
getInput(
'block_after_passed')
1079 $this->testOBJ->setNrOfTries(0);
1080 $this->testOBJ->setBlockPassesAfterPassedEnabled(
false);
1086 if ($form->
getInput(
'pass_waiting_enabled')) {
1087 $pass_waiting_values = $form->
getInput(
'pass_waiting');
1089 $pass_waiting_duration[] = sprintf(
"%'.02d", $pass_waiting_values[
'MM'] ?? 0);
1090 $pass_waiting_duration[] = sprintf(
"%'.03d", $pass_waiting_values[
'dd'] ?? 0);
1091 $pass_waiting_duration[] = sprintf(
"%'.02d", $pass_waiting_values[
'hh'] ?? 0);
1092 $pass_waiting_duration[] = sprintf(
"%'.02d", $pass_waiting_values[
'mm'] ?? 0);
1093 $pass_waiting_duration[] = sprintf(
"%'.02d", $pass_waiting_values[
'ss'] ?? 0);
1095 $pass_waiting_string = implode(
':', $pass_waiting_duration);
1096 $this->testOBJ->setPassWaiting($pass_waiting_string);
1098 $this->testOBJ->setPassWaiting(
"00:000:00:00:00");
1102 $this->testOBJ->setEnableProcessingTime($form->
getInput(
'chb_processing_time'));
1103 if ($this->testOBJ->getEnableProcessingTime()) {
1104 $this->testOBJ->setProcessingTimeByMinutes($form->
getInput(
'processing_time'));
1105 $this->testOBJ->setResetProcessingTime($form->
getInput(
'chb_reset_processing_time'));
1107 $this->testOBJ->setProcessingTime(
'');
1108 $this->testOBJ->setResetProcessingTime(
false);
1113 $this->testOBJ->setKioskMode($form->
getInput(
'kiosk'));
1114 $kioskOptions = $form->
getInput(
'kiosk_options');
1115 if (is_array($kioskOptions)) {
1116 $this->testOBJ->setShowKioskModeTitle(in_array(
'kiosk_title', $kioskOptions,
true));
1117 $this->testOBJ->setShowKioskModeParticipant(in_array(
'kiosk_participant', $kioskOptions,
true));
1119 $this->testOBJ->setShowKioskModeTitle(
false);
1120 $this->testOBJ->setShowKioskModeParticipant(
false);
1125 $this->testOBJ->setShowExamIdInTestPassEnabled((
bool) $form->
getInput(
'examid_in_test_pass'));
1135 'title_output',
'autosave',
'chb_shuffle_questions',
'chb_shuffle_questions',
1136 'offer_hints',
'instant_feedback_contents',
'instant_feedback_trigger',
1137 'answer_fixation_handling',
'obligations_enabled' 1143 $seqheader->setTitle($this->
lng->txt(
"tst_presentation_properties"));
1150 $title_output->addOption(
new ilRadioOption($this->
lng->txt(
"tst_title_output_hide_points"), 1,
''));
1151 $title_output->addOption(
new ilRadioOption($this->
lng->txt(
"tst_title_output_no_title"), 2,
''));
1152 $title_output->setValue($this->testOBJ->getTitleOutput());
1153 $form->
addItem($title_output);
1158 $autosave_output->setChecked($this->testOBJ->getAutosave());
1159 $autosave_output->setInfo($this->
lng->txt(
'autosave_info'));
1160 $autosave_interval =
new ilTextInputGUI($this->
lng->txt(
'autosave_ival'),
'autosave_ival');
1161 $autosave_interval->setSize(10);
1162 $autosave_interval->setValue($this->testOBJ->getAutosaveIval() / 1000);
1163 $autosave_interval->setSuffix($this->
lng->txt(
'seconds'));
1164 $autosave_output->addSubItem($autosave_interval);
1165 $form->
addItem($autosave_output);
1168 $shuffle =
new ilCheckboxInputGUI($this->
lng->txt(
"tst_shuffle_questions"),
"chb_shuffle_questions");
1170 $shuffle->setChecked($this->testOBJ->getShuffleQuestions());
1171 $shuffle->setInfo($this->
lng->txt(
"tst_shuffle_questions_description"));
1175 $checkBoxOfferHints =
new ilCheckboxInputGUI($this->
lng->txt(
'tst_setting_offer_hints_label'),
'offer_hints');
1176 $checkBoxOfferHints->
setChecked((
bool) $this->testOBJ->isOfferingQuestionHintsEnabled());
1177 $checkBoxOfferHints->setInfo($this->
lng->txt(
'tst_setting_offer_hints_info'));
1178 $form->
addItem($checkBoxOfferHints);
1181 $instant_feedback_enabled =
new ilCheckboxInputGUI($this->
lng->txt(
'tst_instant_feedback'),
'instant_feedback_enabled');
1182 $instant_feedback_enabled->
setInfo($this->
lng->txt(
'tst_instant_feedback_desc'));
1183 $instant_feedback_enabled->setChecked($this->testOBJ->isAnyInstantFeedbackOptionEnabled());
1184 $form->
addItem($instant_feedback_enabled);
1185 $instant_feedback_contents =
new ilCheckboxGroupInputGUI($this->
lng->txt(
'tst_instant_feedback_contents'),
'instant_feedback_contents');
1188 $this->
lng->txt(
'tst_instant_feedback_results'),
1189 'instant_feedback_points',
1190 $this->
lng->txt(
'tst_instant_feedback_results_desc')
1193 $this->
lng->txt(
'tst_instant_feedback_answer_generic'),
1194 'instant_feedback_generic',
1195 $this->
lng->txt(
'tst_instant_feedback_answer_generic_desc')
1198 $this->
lng->txt(
'tst_instant_feedback_answer_specific'),
1199 'instant_feedback_specific',
1200 $this->
lng->txt(
'tst_instant_feedback_answer_specific_desc')
1203 $this->
lng->txt(
'tst_instant_feedback_solution'),
1204 'instant_feedback_solution',
1205 $this->
lng->txt(
'tst_instant_feedback_solution_desc')
1207 $instant_feedback_contents->setValue($this->testOBJ->getInstantFeedbackOptionsAsArray());
1208 $instant_feedback_enabled->addSubItem($instant_feedback_contents);
1210 $this->
lng->txt(
'tst_instant_feedback_trigger'),
1211 'instant_feedback_trigger' 1214 $this->
lng->txt(
'tst_instant_feedback_trigger_manual'),
1215 self::INSTANT_FEEDBACK_TRIGGER_MANUAL
1217 $ifbTriggerOpt->
setInfo($this->
lng->txt(
'tst_instant_feedback_trigger_manual_desc'));
1218 $instant_feedback_trigger->addOption($ifbTriggerOpt);
1220 $this->
lng->txt(
'tst_instant_feedback_trigger_forced'),
1221 self::INSTANT_FEEDBACK_TRIGGER_FORCED
1223 $ifbTriggerOpt->
setInfo($this->
lng->txt(
'tst_instant_feedback_trigger_forced_desc'));
1224 $instant_feedback_trigger->addOption($ifbTriggerOpt);
1225 $instant_feedback_trigger->setValue($this->testOBJ->isForceInstantFeedbackEnabled() ? 1 : 0);
1226 $instant_feedback_enabled->addSubItem($instant_feedback_trigger);
1229 $this->
lng->txt(
'tst_answer_fixation_handling'),
1230 'answer_fixation_handling' 1233 $this->
lng->txt(
'tst_answer_fixation_none'),
1234 self::ANSWER_FIXATION_NONE
1236 $radioOption->
setInfo($this->
lng->txt(
'tst_answer_fixation_none_desc'));
1237 $answerFixation->addOption($radioOption);
1239 $this->
lng->txt(
'tst_answer_fixation_on_instant_feedback'),
1240 self::ANSWER_FIXATION_ON_INSTANT_FEEDBACK
1242 $radioOption->
setInfo($this->
lng->txt(
'tst_answer_fixation_on_instant_feedback_desc'));
1243 $answerFixation->addOption($radioOption);
1245 $this->
lng->txt(
'tst_answer_fixation_on_followup_question'),
1246 self::ANSWER_FIXATION_ON_FOLLOWUP_QUESTION
1248 $radioOption->
setInfo($this->
lng->txt(
'tst_answer_fixation_on_followup_question_desc'));
1249 $answerFixation->addOption($radioOption);
1251 $this->
lng->txt(
'tst_answer_fixation_on_instantfb_or_followupqst'),
1252 self::ANSWER_FIXATION_ON_IFB_OR_FUQST
1254 $radioOption->
setInfo($this->
lng->txt(
'tst_answer_fixation_on_instantfb_or_followupqst_desc'));
1255 $answerFixation->addOption($radioOption);
1257 $form->
addItem($answerFixation);
1260 $checkBoxEnableObligations =
new ilCheckboxInputGUI($this->
lng->txt(
'tst_setting_enable_obligations_label'),
'obligations_enabled');
1261 $checkBoxEnableObligations->
setChecked($this->testOBJ->areObligationsEnabled());
1262 $checkBoxEnableObligations->setInfo($this->
lng->txt(
'tst_setting_enable_obligations_info'));
1263 $form->
addItem($checkBoxEnableObligations);
1267 require_once
'Services/UIComponent/CharSelector/classes/class.ilCharSelectorGUI.php';
1269 $char_selector->getConfig()->setAvailability((
int) $this->testOBJ->getCharSelectorAvailability());
1270 $char_selector->getConfig()->setDefinition((
string) $this->testOBJ->getCharSelectorDefinition());
1271 $char_selector->addFormProperties($form);
1272 $char_selector->setFormValues($form);
1275 if ($this->testOBJ->participantDataExist()) {
1276 $checkBoxOfferHints->setDisabled(
true);
1277 $instant_feedback_enabled->setDisabled(
true);
1278 $instant_feedback_trigger->setDisabled(
true);
1279 $instant_feedback_contents->setDisabled(
true);
1280 $answerFixation->setDisabled(
true);
1281 $checkBoxEnableObligations->setDisabled(
true);
1291 $this->testOBJ->setTitleOutput($form->
getInput(
'title_output'));
1295 $this->testOBJ->setAutosave((
bool) $form->
getInput(
'autosave'));
1296 $this->testOBJ->setAutosaveIval($form->
getInput(
'autosave_ival') * 1000);
1300 $this->testOBJ->setShuffleQuestions((
bool) $form->
getInput(
'chb_shuffle_questions'));
1303 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'offer_hints')) {
1304 $this->testOBJ->setOfferingQuestionHintsEnabled((
bool) $form->
getInput(
'offer_hints'));
1307 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'instant_feedback_enabled')) {
1308 if ($form->
getInput(
'instant_feedback_enabled')) {
1310 $this->testOBJ->setInstantFeedbackOptionsByArray(
1311 $form->
getInput(
'instant_feedback_contents')
1315 $this->testOBJ->setForceInstantFeedbackEnabled(
1316 (
bool) $form->
getInput(
'instant_feedback_trigger')
1320 $this->testOBJ->setInstantFeedbackOptionsByArray(array());
1321 $this->testOBJ->setForceInstantFeedbackEnabled(
false);
1325 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'answer_fixation_handling')) {
1329 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'obligations_enabled')) {
1330 $this->testOBJ->setObligationsEnabled((
bool) $form->
getInput(
'obligations_enabled'));
1334 require_once
'Services/UIComponent/CharSelector/classes/class.ilCharSelectorGUI.php';
1336 $char_selector->addFormProperties($form);
1337 $char_selector->getFormValues($form);
1338 $this->testOBJ->setCharSelectorAvailability($char_selector->getConfig()->getAvailability());
1339 $this->testOBJ->setCharSelectorDefinition($char_selector->getConfig()->getDefinition());
1350 $seqheader->setTitle($this->
lng->txt(
"tst_sequence_properties"));
1354 $prevanswers =
new ilCheckboxInputGUI($this->
lng->txt(
"tst_use_previous_answers"),
"chb_use_previous_answers");
1356 $prevanswers->setChecked($this->testOBJ->getUsePreviousAnswers());
1357 $prevanswers->setInfo($this->
lng->txt(
"tst_use_previous_answers_description"));
1363 $cancel->setChecked($this->testOBJ->getShowCancel());
1364 $cancel->setInfo($this->
lng->txt(
"tst_show_cancel_description"));
1370 $this->
lng->txt(
"tst_postpone_off"),
1372 $this->
lng->txt(
"tst_postpone_off_desc")
1375 $this->
lng->txt(
"tst_postpone_on"),
1377 $this->
lng->txt(
"tst_postpone_on_desc")
1379 $postpone->setValue($this->testOBJ->getSequenceSettings());
1383 $list_of_questions =
new ilCheckboxInputGUI($this->
lng->txt(
"tst_show_summary"),
"list_of_questions");
1386 $list_of_questions->setChecked($this->testOBJ->getListOfQuestions());
1387 $list_of_questions->setInfo($this->
lng->txt(
"tst_show_summary_description"));
1390 $list_of_questions_options->addOption(
new ilCheckboxOption($this->
lng->txt(
"tst_list_of_questions_start"),
'chb_list_of_questions_start',
''));
1391 $list_of_questions_options->addOption(
new ilCheckboxOption($this->
lng->txt(
"tst_list_of_questions_end"),
'chb_list_of_questions_end',
''));
1392 $list_of_questions_options->addOption(
new ilCheckboxOption($this->
lng->txt(
"tst_list_of_questions_with_description"),
'chb_list_of_questions_with_description',
''));
1394 if ($this->testOBJ->getListOfQuestionsStart()) {
1395 array_push($values,
'chb_list_of_questions_start');
1397 if ($this->testOBJ->getListOfQuestionsEnd()) {
1398 array_push($values,
'chb_list_of_questions_end');
1400 if ($this->testOBJ->getListOfQuestionsDescription()) {
1401 array_push($values,
'chb_list_of_questions_with_description');
1403 $list_of_questions_options->setValue($values);
1405 $list_of_questions->addSubItem($list_of_questions_options);
1406 $form->
addItem($list_of_questions);
1411 $marking->setChecked($this->testOBJ->getShowMarker());
1412 $marking->setInfo($this->
lng->txt(
"question_marking_description"));
1422 $this->testOBJ->setUsePreviousAnswers($form->
getInput(
'chb_use_previous_answers'));
1426 $this->testOBJ->setShowCancel((
bool) $form->
getInput(
'chb_show_cancel'));
1430 $this->testOBJ->setPostponingEnabled((
bool) $form->
getInput(
'postpone'));
1433 $this->testOBJ->setListOfQuestions((
bool) $form->
getInput(
'list_of_questions'));
1434 $listOfQuestionsOptions = $form->
getInput(
'list_of_questions_options');
1435 if (is_array($listOfQuestionsOptions)) {
1436 $this->testOBJ->setListOfQuestionsStart(in_array(
'chb_list_of_questions_start', $listOfQuestionsOptions));
1437 $this->testOBJ->setListOfQuestionsEnd(in_array(
'chb_list_of_questions_end', $listOfQuestionsOptions));
1438 $this->testOBJ->setListOfQuestionsDescription(in_array(
'chb_list_of_questions_with_description', $listOfQuestionsOptions));
1440 $this->testOBJ->setListOfQuestionsStart(0);
1441 $this->testOBJ->setListOfQuestionsEnd(0);
1442 $this->testOBJ->setListOfQuestionsDescription(0);
1446 $this->testOBJ->setShowMarker((
bool) $form->
getInput(
'chb_show_marker'));
1456 $testFinishHeader->setTitle($this->
lng->txt(
"tst_final_information"));
1457 $form->
addItem($testFinishHeader);
1462 $enable_examview->setChecked($this->testOBJ->getEnableExamview());
1463 $enable_examview->setInfo($this->
lng->txt(
"enable_examview_desc"));
1465 $show_examview_pdf->setValue(1);
1466 $show_examview_pdf->setChecked($this->testOBJ->getShowExamviewPdf());
1467 $show_examview_pdf->setOptionTitle($this->
lng->txt(
"show_examview_pdf"));
1468 $enable_examview->addSubItem($show_examview_pdf);
1469 $form->
addItem($enable_examview);
1473 $showfinal->
setChecked($this->testOBJ->getShowFinalStatement());
1474 $showfinal->setInfo($this->
lng->txt(
"final_statement_show_desc"));
1479 $finalstatement->setValue((
string) $this->testOBJ->prepareTextareaOutput($this->testOBJ->getFinalStatement(),
false,
true));
1480 $finalstatement->setRows(10);
1481 $finalstatement->setCols(80);
1482 $finalstatement->setUseRte(
true);
1483 $finalstatement->addPlugin(
"latex");
1484 $finalstatement->addButton(
"latex");
1485 $finalstatement->setRTESupport($this->testOBJ->getId(),
"tst",
"assessment");
1486 $finalstatement->setRteTagSet(
'full');
1487 $showfinal->addSubItem($finalstatement);
1489 $redirection_mode = $this->testOBJ->getRedirectionMode();
1490 $rm_enabled =
new ilCheckboxInputGUI($this->
lng->txt(
'redirect_after_finishing_tst'),
'redirection_enabled');
1491 $rm_enabled->
setInfo($this->
lng->txt(
'redirect_after_finishing_tst_desc'));
1492 $rm_enabled->setChecked($redirection_mode ==
'0' ?
false :
true);
1495 $radio_rm->addOption($always);
1497 $radio_rm->addOption($kiosk);
1499 $rm_enabled->addSubItem($radio_rm);
1500 $redirection_url =
new ilTextInputGUI($this->
lng->txt(
'redirection_url'),
'redirection_url');
1501 $redirection_url->setValue((
string) $this->testOBJ->getRedirectionUrl());
1502 $redirection_url->setRequired(
true);
1503 $redirection_url->setMaxLength(128);
1504 $rm_enabled->addSubItem($redirection_url);
1509 $sign_submission = $this->testOBJ->getSignSubmission();
1510 $sign_submission_enabled =
new ilCheckboxInputGUI($this->
lng->txt(
'sign_submission'),
'sign_submission');
1511 $sign_submission_enabled->
setChecked($sign_submission);
1512 $sign_submission_enabled->setInfo($this->
lng->txt(
'sign_submission_info'));
1513 $form->
addItem($sign_submission_enabled);
1516 $mailnotification =
new ilCheckboxInputGUI($this->
lng->txt(
"tst_finish_notification"),
"mailnotification");
1517 $mailnotification->
setInfo($this->
lng->txt(
"tst_finish_notification_desc"));
1518 $mailnotification->setChecked($this->testOBJ->getMailNotification() > 0);
1519 $form->
addItem($mailnotification);
1521 $mailnotificationContent =
new ilRadioGroupInputGUI($this->
lng->txt(
"tst_finish_notification_content"),
"mailnotification_content");
1523 $mailnotificationContent->addOption(
new ilRadioOption($this->
lng->txt(
"tst_finish_notification_advanced"), 2,
''));
1524 $mailnotificationContent->setValue($this->testOBJ->getMailNotification() ? $this->testOBJ->getMailNotification() : 1);
1525 $mailnotificationContent->setRequired(
true);
1526 $mailnotification->addSubItem($mailnotificationContent);
1529 $mailnottype->setValue(1);
1530 $mailnottype->setOptionTitle($this->
lng->txt(
"mailnottype"));
1531 $mailnottype->setInfo($this->
lng->txt(
"mailnottype_desc"));
1532 $mailnottype->setChecked($this->testOBJ->getMailNotificationType());
1533 $mailnotification->addSubItem($mailnottype);
1542 $this->testOBJ->setEnableExamview((
bool) $form->
getInput(
'enable_examview'));
1543 $this->testOBJ->setShowExamviewPdf((
bool) $form->
getInput(
'show_examview_pdf'));
1546 $this->testOBJ->setShowFinalStatement((
bool) $form->
getInput(
'showfinalstatement'));
1547 $this->testOBJ->setFinalStatement($form->
getInput(
'finalstatement') ??
'');
1550 if (empty($form->
getInput(
'redirection_enabled'))) {
1553 $this->testOBJ->setRedirectionMode(($form->
getInput(
'redirection_mode')));
1559 $this->testOBJ->setRedirectionUrl($form->
getInput(
'redirection_url'));
1561 $this->testOBJ->setRedirectionUrl(null);
1565 $this->testOBJ->setSignSubmission((
bool) $form->
getInput(
'sign_submission'));
1569 $this->testOBJ->setMailNotification($form->
getInput(
'mailnotification_content'));
1570 $this->testOBJ->setMailNotificationType($form->
getInput(
'mailnottype'));
1572 $this->testOBJ->setMailNotification(0);
1573 $this->testOBJ->setMailNotificationType(
false);
1579 switch ($formValue) {
1580 case self::ANSWER_FIXATION_NONE:
1581 $this->testOBJ->setInstantFeedbackAnswerFixationEnabled(
false);
1582 $this->testOBJ->setFollowupQuestionAnswerFixationEnabled(
false);
1584 case self::ANSWER_FIXATION_ON_INSTANT_FEEDBACK:
1585 $this->testOBJ->setInstantFeedbackAnswerFixationEnabled(
true);
1586 $this->testOBJ->setFollowupQuestionAnswerFixationEnabled(
false);
1588 case self::ANSWER_FIXATION_ON_FOLLOWUP_QUESTION:
1589 $this->testOBJ->setInstantFeedbackAnswerFixationEnabled(
false);
1590 $this->testOBJ->setFollowupQuestionAnswerFixationEnabled(
true);
1592 case self::ANSWER_FIXATION_ON_IFB_OR_FUQST:
1593 $this->testOBJ->setInstantFeedbackAnswerFixationEnabled(
true);
1594 $this->testOBJ->setFollowupQuestionAnswerFixationEnabled(
true);
1601 if ($this->testOBJ->isInstantFeedbackAnswerFixationEnabled() && $this->testOBJ->isFollowupQuestionAnswerFixationEnabled()) {
1602 return self::ANSWER_FIXATION_ON_IFB_OR_FUQST;
1605 if ($this->testOBJ->isFollowupQuestionAnswerFixationEnabled()) {
1606 return self::ANSWER_FIXATION_ON_FOLLOWUP_QUESTION;
1609 if ($this->testOBJ->isInstantFeedbackAnswerFixationEnabled()) {
1610 return self::ANSWER_FIXATION_ON_INSTANT_FEEDBACK;
1613 return self::ANSWER_FIXATION_NONE;
saveGeneralProperties(ilPropertyFormGUI $form)
addAvailabilityProperties(ilPropertyFormGUI $form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Readable part of repository interface to ilComponentDataDB.
const INSTANT_FEEDBACK_TRIGGER_FORCED
saveTestFinishProperties(ilPropertyFormGUI $form)
showResetTemplateConfirmationCmd()
Enable all settings - Confirmation.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
performSaveForm(ilPropertyFormGUI $form)
const QUESTION_SET_TYPE_RANDOM
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveTestSequenceSettings(ilPropertyFormGUI $form)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static _getAllReferences(int $id)
get all reference ids for object ID
const ANSWER_FIXATION_NONE
RequestInterface $request
const CMD_SHOW_RESET_TPL_CONFIRM
__construct(ilObjTest $testOBJ)
getAnswerFixationSettingsAsFormValue()
removeHiddenItems(ilPropertyFormGUI $form)
const REDIRECT_NONE
Redirect after finishing test constants.
static updateServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
savePresentationProperties(ilPropertyFormGUI $form)
populateSettingsTemplateMessage()
setAnswerFixationSettingsByFormValue($formValue)
const ANSWER_FIXATION_ON_INSTANT_FEEDBACK
addQuestionBehaviourProperties(ilPropertyFormGUI $form)
const INSTANT_FEEDBACK_TRIGGER_MANUAL
const CMD_CONFIRMED_SAVE_FORM
isSectionHeaderRequired($fields)
setValue(string $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addGeneralProperties(ilPropertyFormGUI $form)
const SUBTAB_ID_GENERAL_SETTINGS
saveTestAccessProperties(ilPropertyFormGUI $form)
saveTestIntroProperties(ilPropertyFormGUI $form)
saveQuestionBehaviourProperties(ilPropertyFormGUI $form)
static isSkillManagementGloballyActivated()
isCharSelectorPropertyRequired()
static initServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
ilComponentRepository $component_repository
const CMD_CONFIRMED_RESET_TPL
executeCommand()
Command Execution.
addTestFinishProperties(ilPropertyFormGUI $form)
addTestRunProperties(ilPropertyFormGUI $form)
addTestSequenceProperties(ilPropertyFormGUI $form)
addTestIntroProperties(ilPropertyFormGUI $form)
getTemplateSettingValue($settingName)
showConfirmation(ilPropertyFormGUI $form, $oldQuestionSetType, $newQuestionSetType, $hasQuestionsWithoutQuestionpool)
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
isSkillServiceSettingToBeAdjusted(ilPropertyFormGUI $form)
showFormCmd(ilPropertyFormGUI $form=null)
const QUESTION_SET_TYPE_FIXED
formPropertyExists(ilPropertyFormGUI $form, $propertyId)
ilTestQuestionSetConfigFactory $testQuestionSetConfigFactory
addPresentationProperties(ilPropertyFormGUI $form)
saveFormCmd($isConfirmedSave=false)
const ANSWER_FIXATION_ON_IFB_OR_FUQST
const ORGU_POSITION_ACCESS
saveTestRunProperties(ilPropertyFormGUI $form)
addTestAccessProperties(ilPropertyFormGUI $form)
ilGlobalTemplateInterface $tpl
saveAvailabilityProperties(ilPropertyFormGUI $form)
const ANSWER_FIXATION_ON_FOLLOWUP_QUESTION
const CMD_SHOW_FORM
command constants
confirmedResetTemplateCmd()
Enable all settings - remove template.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...