4 require_once
'Modules/Test/classes/class.ilTestSettingsGUI.php';
5 require_once
'Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php';
96 $this->tpl = $DIC->ui()->mainTemplate();
104 require_once
'Modules/Test/classes/class.ilTestQuestionSetConfigFactory.php';
119 if (!$this->access->checkAccess(
"write",
"", $this->testGUI->ref_id)) {
121 $this->ctrl->redirect($this->testGUI,
"infoScreen");
128 $nextClass = $this->ctrl->getNextClass();
130 switch ($nextClass) {
132 $cmd = $this->ctrl->getCmd(self::CMD_SHOW_FORM) .
'Cmd';
139 $this->tpl->addJavascript(
"./Services/JavaScript/js/Basic.js");
141 if ($form === null) {
145 $formHTML = $this->ctrl->getHTML($form);
148 $this->tpl->setContent($formHTML . $msgHTML);
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) {
173 $title = $this->settingsTemplate->getTitle();
175 if ($this->settingsTemplate->getAutoGenerated()) {
176 $title = $this->lng->txt($title);
182 $link = $this->ctrl->getLinkTarget($this, self::CMD_SHOW_RESET_TPL_CONFIRM);
183 $link =
"<a href=\"" . $link .
"\">" . $this->lng->txt(
"test_using_template_link") .
"</a>";
186 sprintf($this->lng->txt(
"test_using_template"), $title, $link),
190 $msgHTML =
"<div style=\"margin-top:10px\">$msgHTML</div>";
209 if ($isConfirmedSave) {
213 $_FILES[
'tile_image'] = array(
214 'name' =>
'',
'type' =>
'',
'size' =>
'',
'tmp_name' =>
'',
'error' =>
'' 220 $errors = !$form->checkInput();
221 $form->setValuesByPost();
234 $currentQuestionSetConfig = $this->testQuestionSetConfigFactory->getQuestionSetConfig();
235 if ($form->getItemByPostVar(
'online')->getChecked() && !$this->testOBJ->isComplete($currentQuestionSetConfig)) {
236 $form->getItemByPostVar(
'online')->setAlert(
237 $this->lng->txt(
"cannot_switch_to_online_no_questions_andor_no_mark_steps")
246 $qstSetSetting = $form->getItemByPostVar(
'question_set_type');
247 $qTitleSetting = $form->getItemByPostVar(
'title_output');
250 $qstSetSetting->setAlert($this->lng->txt(
'tst_conflicting_setting'));
251 $qTitleSetting->setAlert($this->lng->txt(
'tst_conflicting_setting'));
259 $obligationsSetting = $form->getItemByPostVar(
'obligations_enabled');
260 $answerFixationSetting = $form->getItemByPostVar(
'answer_fixation_handling');
262 if ($obligationsSetting->getChecked() && $answerFixationSetting->getValue() != self::ANSWER_FIXATION_NONE) {
263 $obligationsSetting->setAlert($this->lng->txt(
'tst_conflicting_setting'));
264 $answerFixationSetting->setAlert($this->lng->txt(
'tst_conflicting_setting'));
272 $postponeSetting = $form->getItemByPostVar(
'postpone');
273 $answerFixationSetting = $form->getItemByPostVar(
'answer_fixation_handling');
274 $conflictModes = array(self::ANSWER_FIXATION_ON_FOLLOWUP_QUESTION, self::ANSWER_FIXATION_ON_IFB_OR_FUQST);
276 if ($postponeSetting->getValue() && in_array($answerFixationSetting->getValue(), $conflictModes)) {
277 $postponeSetting->setAlert($this->lng->txt(
'tst_conflicting_setting'));
278 $answerFixationSetting->setAlert($this->lng->txt(
'tst_conflicting_setting'));
286 $shuffleSetting = $form->getItemByPostVar(
'chb_shuffle_questions');
287 $answerFixationSetting = $form->getItemByPostVar(
'answer_fixation_handling');
288 $conflictModes = array(self::ANSWER_FIXATION_ON_FOLLOWUP_QUESTION, self::ANSWER_FIXATION_ON_IFB_OR_FUQST);
290 if ($shuffleSetting->getChecked() && in_array($answerFixationSetting->getValue(), $conflictModes)) {
291 $shuffleSetting->setAlert($this->lng->txt(
'tst_conflicting_setting'));
292 $answerFixationSetting->setAlert($this->lng->txt(
'tst_conflicting_setting'));
303 $questionSetTypeRelatingDataCleanupRequired =
false;
305 $oldQuestionSetType = $this->testOBJ->getQuestionSetType();
307 $newQuestionSetType = $form->getItemByPostVar(
'question_set_type')->getValue();
309 if (!$this->testOBJ->participantDataExist() && $newQuestionSetType != $oldQuestionSetType) {
310 $oldQuestionSetConfig = $this->testQuestionSetConfigFactory->getQuestionSetConfigByType(
314 if ($oldQuestionSetConfig->doesQuestionSetRelatedDataExist()) {
315 if (!$isConfirmedSave) {
321 $this->testOBJ->hasQuestionsWithoutQuestionpool()
333 $questionSetTypeRelatingDataCleanupRequired =
true;
336 if ($form->getItemByPostVar(
'online')->getChecked()) {
337 $form->getItemByPostVar(
'online')->setChecked(
false);
339 if (!$this->testOBJ->getOfflineStatus()) {
340 $infoMsg[] = $this->lng->txt(
"tst_set_offline_due_to_switched_question_set_type_setting");
342 $infoMsg[] = $this->lng->txt(
"tst_cannot_online_due_to_switched_quest_set_type_setting");
347 $newQuestionSetType = $oldQuestionSetType;
353 $form->getItemByPostVar(
'chb_use_previous_answers')->setChecked(
false);
362 if ($questionSetTypeRelatingDataCleanupRequired) {
363 $oldQuestionSetConfig->removeQuestionSetRelatedData();
368 if (!$this->testOBJ->participantDataExist() && !$this->testOBJ->getFixedParticipants()) {
369 foreach ($this->testOBJ->getInvitedUsers() as $usrId => $usrData) {
370 $this->testOBJ->disinviteUser($usrId);
376 if (count($infoMsg)) {
380 ilUtil::sendSuccess($this->lng->txt(
"msg_obj_modified"),
true);
381 $this->ctrl->redirect($this, self::CMD_SHOW_FORM);
389 require_once
'Services/Utilities/classes/class.ilConfirmationGUI.php';
392 $confirmationGUI->setFormAction($this->ctrl->getFormAction($this));
393 $confirmationGUI->setHeaderText($this->lng->txt(
"test_confirm_template_reset"));
394 $confirmationGUI->setCancel($this->lng->txt(
'cancel'), self::CMD_SHOW_FORM);
395 $confirmationGUI->setConfirm($this->lng->txt(
'confirm'), self::CMD_CONFIRMED_RESET_TPL);
397 $this->tpl->setContent($this->ctrl->getHTML($confirmationGUI));
405 $this->testOBJ->setTemplate(null);
406 $this->testOBJ->saveToDB();
408 ilUtil::sendSuccess($this->lng->txt(
"test_template_reset"),
true);
409 $this->ctrl->redirect($this, self::CMD_SHOW_FORM);
434 return $ilSetting->get(
'char_selector_availability') > 0;
440 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
442 $form->setFormAction($this->ctrl->getFormAction($this));
443 $form->addCommandButton(self::CMD_SAVE_FORM, $this->lng->txt(
"save"));
444 $form->setTableWidth(
"100%");
445 $form->setId(
"test_properties");
458 include_once
'Modules/Test/classes/class.ilECSTestSettings.php';
460 $ecs->addSettingsToForm($form,
'tst');
465 $this->testOBJ->getType()
471 if ($orgunitServiceActive || $skillServiceActive) {
473 $otherHead->setTitle($this->lng->txt(
'obj_features'));
474 $form->addItem($otherHead);
477 require_once
'Services/Object/classes/class.ilObjectServiceSettingsGUI.php';
483 if ($skillServiceActive) {
484 $skillService =
new ilCheckboxInputGUI($this->lng->txt(
'tst_activate_skill_service'),
'skill_service');
485 $skillService->
setInfo($this->lng->txt(
'tst_activate_skill_service_desc'));
486 $skillService->setChecked($this->testOBJ->isSkillServiceEnabled());
487 if ($this->testOBJ->participantDataExist()) {
488 $skillService->setDisabled(
true);
490 $form->addItem($skillService);
511 if (!$this->testOBJ->participantDataExist()) {
514 $this->testOBJ->setSkillServiceEnabled($form->
getItemByPostVar(
'skill_service')->getChecked());
518 require_once
'Services/Object/classes/class.ilObjectServiceSettingsGUI.php';
524 $this->testOBJ->saveToDb(
true);
527 include_once
'Modules/Test/classes/class.ilECSTestSettings.php';
529 $ecs->handleSettingsUpdate();
538 $header->setTitle($this->lng->txt(
"tst_general_properties"));
543 include_once
'Services/MetaData/classes/class.ilMD.php';
544 $md_obj =
new ilMD($this->testOBJ->getId(), 0,
"tst");
548 $title->setRequired(
true);
549 $title->setValue($md_section->getTitle());
552 $ids = $md_section->getDescriptionIds();
554 $desc_obj = $md_section->getDescription(array_pop($ids));
559 $desc->setValue($desc_obj->getDescription());
564 $pool_usage =
new ilRadioGroupInputGUI($this->lng->txt(
'test_question_pool_usage'),
'use_pool');
566 $optional_qpl =
new ilRadioOption($this->lng->txt(
'test_question_pool_usage_optional'), 1);
567 $optional_qpl->
setInfo($this->lng->txt(
'test_question_pool_usage_optional_info'));
568 $pool_usage->addOption($optional_qpl);
570 $tst_directly =
new ilRadioOption($this->lng->txt(
'test_question_pool_usage_tst_directly'), 0);
571 $tst_directly->
setInfo($this->lng->txt(
'test_question_pool_usage_tst_directly_info'));
572 $pool_usage->addOption($tst_directly);
574 $pool_usage->setValue($this->testOBJ->getPoolUsage() ? 1 : 0);
578 $questSetType =
new ilRadioGroupInputGUI($this->lng->txt(
"tst_question_set_type"),
'question_set_type');
580 $this->lng->txt(
"tst_question_set_type_fixed"),
582 $this->lng->txt(
"tst_question_set_type_fixed_desc")
584 $questSetType->addOption($questSetTypeFixed);
586 $this->lng->txt(
"tst_question_set_type_random"),
588 $this->lng->txt(
"tst_question_set_type_random_desc")
590 $questSetType->addOption($questSetTypeRandom);
592 $this->lng->txt(
"tst_question_set_type_dynamic"),
594 $this->lng->txt(
"tst_question_set_type_dynamic_desc")
596 $questSetType->addOption($questSetTypeContinues);
597 $questSetType->
setValue($this->testOBJ->getQuestionSetType());
598 if ($this->testOBJ->participantDataExist()) {
599 $questSetType->setDisabled(
true);
605 if ($this->testOBJ->participantDataExist()) {
608 $rb =
new ilRadioOption($this->lng->txt(
'tst_anonymity_no_anonymization'), 0);
609 $anonymity->addOption($rb);
610 $rb =
new ilRadioOption($this->lng->txt(
'tst_anonymity_anonymous_test'), 1);
611 $anonymity->addOption($rb);
612 $anonymity->
setValue((
int) $this->testOBJ->getAnonymity());
621 include_once
'Services/MetaData/classes/class.ilMD.php';
622 $md_obj =
new ilMD($this->testOBJ->getId(), 0,
"tst");
630 $md_desc_ids = $md_section->getDescriptionIds();
632 $md_desc = $md_section->getDescription(array_pop($md_desc_ids));
636 $md_desc = $md_section->addDescription();
643 $this->testOBJ->setOfflineStatus(!$form->
getItemByPostVar(
'online')->getChecked());
644 $this->testOBJ->update();
648 $this->testOBJ->setPoolUsage((
int) $form->
getItemByPostVar(
'use_pool')->getValue());
651 if (!$this->testOBJ->participantDataExist()) {
654 $this->testOBJ->setQuestionSetType($form->
getItemByPostVar(
'question_set_type')->getValue());
659 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'anonymity')) {
660 $this->testOBJ->setAnonymity($form->
getItemByPostVar(
'anonymity')->getValue());
669 include_once
"Services/Object/classes/class.ilObjectActivation.php";
670 $this->lng->loadLanguageModule(
'rep');
673 $section->setTitle($this->lng->txt(
'rep_activation_availability'));
677 $act_obj_info = $act_ref_info =
"";
679 $act_obj_info =
' ' . $this->lng->txt(
'rep_activation_online_object_info');
680 $act_ref_info = $this->lng->txt(
'rep_activation_access_ref_info');
684 $online->
setChecked(!$this->testOBJ->getOfflineStatus());
685 $online->setInfo($this->lng->txt(
'tst_activation_online_info') . $act_obj_info);
688 $act_type =
new ilCheckboxInputGUI($this->lng->txt(
'rep_visibility_until'),
'activation_type');
689 $act_type->
setChecked($this->testOBJ->isActivationLimited());
692 include_once
"Services/Form/classes/class.ilDateDurationInputGUI.php";
695 $dur->setShowTime(
true);
696 $date = $this->testOBJ->getActivationStartingTime();
698 $dur->setStartText($this->lng->txt(
'rep_activation_limited_start'));
699 $date = $this->testOBJ->getActivationEndingTime();
701 $dur->setEndText($this->lng->txt(
'rep_activation_limited_end'));
702 $act_type->addSubItem($dur);
704 $visible =
new ilCheckboxInputGUI($this->lng->txt(
'rep_activation_limited_visibility'),
'activation_visibility');
705 $visible->
setInfo($this->lng->txt(
'tst_activation_limited_visibility_info'));
706 $visible->setChecked($this->testOBJ->getActivationVisibility());
707 $act_type->addSubItem($visible);
719 $this->testOBJ->setActivationLimited(
true);
720 $this->testOBJ->setActivationVisibility($form->
getItemByPostVar(
'activation_visibility')->getChecked());
723 $this->testOBJ->setActivationStartingTime($period->getStart()->get(
IL_CAL_UNIX));
724 $this->testOBJ->setActivationEndingTime($period->getEnd()->get(
IL_CAL_UNIX));
726 $this->testOBJ->setActivationLimited(
false);
738 $section->setTitle($this->lng->txt(
'tst_presentation_settings_section'));
741 $DIC->object()->commonSettings()->legacyForm($form, $this->testOBJ)->addTileImage();
751 $DIC->object()->commonSettings()->legacyForm($form, $this->testOBJ)->saveTileImage();
760 $section->setTitle($this->lng->txt(
'tst_settings_header_intro'));
764 $introEnabled =
new ilCheckboxInputGUI($this->lng->txt(
"tst_introduction"),
'intro_enabled');
765 $introEnabled->
setChecked($this->testOBJ->isIntroductionEnabled());
766 $introEnabled->setInfo($this->lng->txt(
'tst_introduction_desc'));
768 $intro =
new ilTextAreaInputGUI($this->lng->txt(
"tst_introduction_text"),
"introduction");
770 $intro->setValue($this->testOBJ->prepareTextareaOutput($this->testOBJ->getIntroduction(),
false,
true));
773 $intro->setUseRte(
true);
774 $intro->addPlugin(
"latex");
775 $intro->addButton(
"latex");
776 $intro->setRTESupport($this->testOBJ->getId(),
"tst",
"assessment");
777 $intro->setRteTagSet(
'full');
778 $introEnabled->addSubItem($intro);
783 $showinfo->setChecked($this->testOBJ->getShowInfo());
784 $showinfo->setInfo($this->lng->txt(
"showinfo_desc"));
794 $this->testOBJ->setIntroductionEnabled($form->
getItemByPostVar(
'intro_enabled')->getChecked());
797 $this->testOBJ->setIntroduction($form->
getItemByPostVar(
'introduction')->getValue());
799 $this->testOBJ->setIntroduction(
'');
804 $this->testOBJ->setShowInfo($form->
getItemByPostVar(
'showinfo')->getChecked());
814 $header->setTitle($this->lng->txt(
"tst_settings_header_execution"));
818 $startingtime =
new ilDateTimeInputGUI($this->lng->txt(
"tst_starting_time"),
'starting_time');
819 $startingtime->
setInfo($this->lng->txt(
"tst_starting_time_desc"));
820 $startingtime->setShowTime(
true);
821 if ($this->testOBJ->getStartingTime() != 0) {
824 $startingtime->setDate(null);
828 if ($this->testOBJ->participantDataExist()) {
829 $startingtime->setDisabled(
true);
833 $endingtime =
new ilDateTimeInputGUI($this->lng->txt(
"tst_ending_time"),
'ending_time');
834 $endingtime->
setInfo($this->lng->txt(
"tst_ending_time_desc"));
835 $endingtime->setShowTime(
true);
836 if ($this->testOBJ->getEndingTime() != 0) {
839 $endingtime->setDate(null);
844 $pwEnabled =
new ilCheckboxInputGUI($this->lng->txt(
'tst_password'),
'password_enabled');
845 $pwEnabled->
setChecked($this->testOBJ->isPasswordEnabled());
846 $pwEnabled->setInfo($this->lng->txt(
"tst_password_details"));
851 $password->setValue($this->testOBJ->getPassword());
856 $fixedparticipants =
new ilCheckboxInputGUI($this->lng->txt(
'participants_invitation'),
"fixedparticipants");
858 $fixedparticipants->setChecked($this->testOBJ->getFixedParticipants());
859 $fixedparticipants->setInfo($this->lng->txt(
"participants_invitation_description"));
860 if ($this->testOBJ->participantDataExist()) {
861 $fixedparticipants->setDisabled(
true);
863 $form->
addItem($fixedparticipants);
866 $simulLimited =
new ilCheckboxInputGUI($this->lng->txt(
"tst_allowed_users"),
'limitUsers');
867 $simulLimited->
setInfo($this->lng->txt(
"tst_allowed_users_desc"));
868 $simulLimited->setChecked($this->testOBJ->isLimitUsersEnabled());
871 $simul =
new ilNumberInputGUI($this->lng->txt(
"tst_allowed_users_max"),
"allowedUsers");
873 $simul->allowDecimals(
false);
874 $simul->setMinValue(1);
875 $simul->setMinvalueShouldBeGreater(
false);
877 $simul->setValue(($this->testOBJ->getAllowedUsers()) ? $this->testOBJ->getAllowedUsers() :
'');
878 $simulLimited->addSubItem($simul);
881 $idle =
new ilNumberInputGUI($this->lng->txt(
"tst_allowed_users_time_gap"),
"allowedUsersTimeGap");
882 $idle->
setInfo($this->lng->txt(
"tst_allowed_users_time_gap_desc"));
884 $idle->setSuffix($this->lng->txt(
"seconds"));
885 $idle->setValue(($this->testOBJ->getAllowedUsersTimeGap()) ? $this->testOBJ->getAllowedUsersTimeGap() : 300);
886 $simulLimited->addSubItem($idle);
897 if (!$this->testOBJ->participantDataExist()) {
901 $this->testOBJ->setStartingTime($starting_time->getUnixtime());
902 $this->testOBJ->setStartingTimeEnabled(
true);
904 $this->testOBJ->setStartingTime(null);
905 $this->testOBJ->setStartingTimeEnabled(
false);
912 $this->testOBJ->setEndingTime($ending_time->getUnixtime());
913 $this->testOBJ->setEndingTimeEnabled(
true);
915 $this->testOBJ->setEndingTime(null);
916 $this->testOBJ->setEndingTimeEnabled(
false);
920 $this->testOBJ->setPasswordEnabled($form->
getItemByPostVar(
'password_enabled')->getChecked());
923 $this->testOBJ->setPassword($form->
getItemByPostVar(
'password')->getValue());
925 $this->testOBJ->setPassword(
'');
929 if ($this->
formPropertyExists($form,
'fixedparticipants') && !$this->testOBJ->participantDataExist()) {
930 $this->testOBJ->setFixedParticipants($form->
getItemByPostVar(
'fixedparticipants')->getChecked());
934 $this->testOBJ->setLimitUsersEnabled($form->
getItemByPostVar(
'limitUsers')->getChecked());
937 $this->testOBJ->setAllowedUsers($form->
getItemByPostVar(
'allowedUsers')->getValue());
938 $this->testOBJ->setAllowedUsersTimeGap($form->
getItemByPostVar(
'allowedUsersTimeGap')->getValue());
940 $this->testOBJ->setAllowedUsers(
'');
952 $header->setTitle($this->lng->txt(
"tst_settings_header_test_run"));
956 $limitPasses =
new ilCheckboxInputGUI($this->lng->txt(
"tst_limit_nr_of_tries"),
'limitPasses');
957 $limitPasses->
setInfo($this->lng->txt(
"tst_nr_of_tries_desc"));
958 $limitPasses->setChecked($this->testOBJ->getNrOfTries() > 0);
959 $nr_of_tries =
new ilNumberInputGUI($this->lng->txt(
"tst_nr_of_tries"),
"nr_of_tries");
961 $nr_of_tries->allowDecimals(
false);
962 $nr_of_tries->setMinValue(1);
963 $nr_of_tries->setMinvalueShouldBeGreater(
false);
964 $nr_of_tries->setValue($this->testOBJ->getNrOfTries() ? $this->testOBJ->getNrOfTries() : 1);
965 $nr_of_tries->setRequired(
true);
966 $limitPasses->addSubItem($nr_of_tries);
968 $this->lng->txt(
'tst_block_passes_after_passed'),
971 $blockAfterPassed->
setInfo($this->lng->txt(
'tst_block_passes_after_passed_info'));
972 $blockAfterPassed->setChecked($this->testOBJ->isBlockPassesAfterPassedEnabled());
973 $limitPasses->addSubItem($blockAfterPassed);
974 if ($this->testOBJ->participantDataExist()) {
975 $limitPasses->setDisabled(
true);
976 $blockAfterPassed->setDisabled(
true);
977 $nr_of_tries->setDisabled(
true);
982 $pass_waiting_enabled =
new ilCheckboxInputGUI($this->lng->txt(
'tst_pass_waiting_enabled'),
'pass_waiting_enabled');
983 $pass_waiting_enabled->
setInfo($this->lng->txt(
'tst_pass_waiting_info'));
984 $pass_waiting_enabled->setChecked($this->testOBJ->isPassWaitingEnabled());
987 $duration =
new ilDurationInputGUI($this->lng->txt(
"tst_pass_waiting_time"),
"pass_waiting");
990 $duration->setShowDays(
true);
991 $duration->setShowHours(
true);
992 $duration->setShowMinutes(
true);
994 $pw_time_array = explode(
':', $this->testOBJ->getPassWaiting());
995 $duration->setMonths($pw_time_array[0]);
996 $duration->setDays($pw_time_array[1]);
997 $duration->setHours($pw_time_array[2]);
998 $duration->setMinutes($pw_time_array[3]);
999 $duration->setRequired(
false);
1000 $pass_waiting_enabled->addSubItem($duration);
1002 $form->
addItem($pass_waiting_enabled);
1005 $processing =
new ilCheckboxInputGUI($this->lng->txt(
"tst_processing_time"),
"chb_processing_time");
1006 $processing->
setInfo($this->lng->txt(
"tst_processing_time_desc"));
1007 $processing->setValue(1);
1010 $processing->setChecked(
true);
1012 $processing->setChecked($this->testOBJ->getEnableProcessingTime());
1016 $processingtime =
new ilNumberInputGUI($this->lng->txt(
"tst_processing_time_duration"),
'processing_time');
1018 $processingtime->setMinValue(1);
1019 $processingtime->setMinvalueShouldBeGreater(
false);
1020 $processingtime->setValue($this->testOBJ->getProcessingTimeAsMinutes());
1021 $processingtime->setSize(5);
1022 $processingtime->setSuffix($this->lng->txt(
'minutes'));
1023 $processingtime->setInfo($this->lng->txt(
"tst_processing_time_duration_desc"));
1024 $processing->addSubItem($processingtime);
1028 $resetprocessing->setValue(1);
1029 $resetprocessing->setOptionTitle($this->lng->txt(
"tst_reset_processing_time"));
1030 $resetprocessing->setChecked($this->testOBJ->getResetProcessingTime());
1031 $resetprocessing->setInfo($this->lng->txt(
"tst_reset_processing_time_desc"));
1032 $processing->addSubItem($resetprocessing);
1035 if ($this->testOBJ->participantDataExist()) {
1036 $processing->setDisabled(
true);
1037 $processingtime->setDisabled(
true);
1038 $resetprocessing->setDisabled(
true);
1040 $duration->setDisabled(
true);
1041 $pass_waiting_enabled->setDisabled(
true);
1047 $kiosk->setChecked($this->testOBJ->getKioskMode());
1048 $kiosk->setInfo($this->lng->txt(
"kiosk_description"));
1053 $kiosktitle->addOption(
new ilCheckboxOption($this->lng->txt(
"kiosk_show_participant"),
'kiosk_participant',
''));
1055 if ($this->testOBJ->getShowKioskModeTitle()) {
1056 array_push($values,
'kiosk_title');
1058 if ($this->testOBJ->getShowKioskModeParticipant()) {
1059 array_push($values,
'kiosk_participant');
1061 $kiosktitle->setValue($values);
1062 $kiosktitle->setInfo($this->lng->txt(
"kiosk_options_desc"));
1063 $kiosk->addSubItem($kiosktitle);
1067 $examIdInPass =
new ilCheckboxInputGUI($this->lng->txt(
'examid_in_test_pass'),
'examid_in_test_pass');
1068 $examIdInPass->
setInfo($this->lng->txt(
'examid_in_test_pass_desc'));
1069 $examIdInPass->setChecked($this->testOBJ->isShowExamIdInTestPassEnabled());
1070 $form->
addItem($examIdInPass);
1078 if (!$this->testOBJ->participantDataExist()) {
1082 $this->testOBJ->setNrOfTries($form->
getItemByPostVar(
'nr_of_tries')->getValue());
1084 $this->testOBJ->setBlockPassesAfterPassedEnabled(
1088 $this->testOBJ->setNrOfTries(0);
1089 $this->testOBJ->setBlockPassesAfterPassedEnabled(
false);
1098 $pass_waiting_duration[] = sprintf(
"%'.02d", $pass_waiting_values->getMonths());
1099 $pass_waiting_duration[] = sprintf(
"%'.03d", $pass_waiting_values->getDays());
1100 $pass_waiting_duration[] = sprintf(
"%'.02d", $pass_waiting_values->getHours());
1101 $pass_waiting_duration[] = sprintf(
"%'.02d", $pass_waiting_values->getMinutes());
1102 $pass_waiting_duration[] = sprintf(
"%'.02d", $pass_waiting_values->getSeconds());
1104 $pass_waiting_string = implode(
':', $pass_waiting_duration);
1105 $this->testOBJ->setPassWaiting($pass_waiting_string);
1107 $this->testOBJ->setPassWaiting(
"00:000:00:00:00");
1111 $this->testOBJ->setEnableProcessingTime($form->
getItemByPostVar(
'chb_processing_time')->getChecked());
1112 if ($this->testOBJ->getEnableProcessingTime()) {
1113 $this->testOBJ->setProcessingTimeByMinutes($form->
getItemByPostVar(
'processing_time')->getValue());
1114 $this->testOBJ->setResetProcessingTime($form->
getItemByPostVar(
'chb_reset_processing_time')->getChecked());
1116 $this->testOBJ->setProcessingTime(
'');
1117 $this->testOBJ->setResetProcessingTime(
false);
1122 $this->testOBJ->setKioskMode($form->
getInput(
'kiosk'));
1124 if (is_array($kioskOptions)) {
1125 $this->testOBJ->setShowKioskModeTitle(in_array(
'kiosk_title', $kioskOptions));
1126 $this->testOBJ->setShowKioskModeParticipant(in_array(
'kiosk_participant', $kioskOptions));
1128 $this->testOBJ->setShowKioskModeTitle(
false);
1129 $this->testOBJ->setShowKioskModeParticipant(
false);
1135 $this->testOBJ->setShowExamIdInTestPassEnabled($value);
1145 'title_output',
'autosave',
'chb_shuffle_questions',
'chb_shuffle_questions',
1146 'offer_hints',
'instant_feedback_contents',
'instant_feedback_trigger',
1147 'answer_fixation_handling',
'obligations_enabled' 1153 $seqheader->setTitle($this->lng->txt(
"tst_presentation_properties"));
1160 $title_output->addOption(
new ilRadioOption($this->lng->txt(
"tst_title_output_hide_points"), 1,
''));
1161 $title_output->addOption(
new ilRadioOption($this->lng->txt(
"tst_title_output_no_title"), 2,
''));
1162 $title_output->setValue($this->testOBJ->getTitleOutput());
1163 $form->
addItem($title_output);
1168 $autosave_output->setChecked($this->testOBJ->getAutosave());
1169 $autosave_output->setInfo($this->lng->txt(
'autosave_info'));
1170 $autosave_interval =
new ilTextInputGUI($this->lng->txt(
'autosave_ival'),
'autosave_ival');
1171 $autosave_interval->setSize(10);
1172 $autosave_interval->setValue($this->testOBJ->getAutosaveIval() / 1000);
1173 $autosave_interval->setSuffix($this->lng->txt(
'seconds'));
1174 $autosave_output->addSubItem($autosave_interval);
1175 $form->
addItem($autosave_output);
1178 $shuffle =
new ilCheckboxInputGUI($this->lng->txt(
"tst_shuffle_questions"),
"chb_shuffle_questions");
1180 $shuffle->setChecked($this->testOBJ->getShuffleQuestions());
1181 $shuffle->setInfo($this->lng->txt(
"tst_shuffle_questions_description"));
1185 $checkBoxOfferHints =
new ilCheckboxInputGUI($this->lng->txt(
'tst_setting_offer_hints_label'),
'offer_hints');
1186 $checkBoxOfferHints->
setChecked($this->testOBJ->isOfferingQuestionHintsEnabled());
1187 $checkBoxOfferHints->setInfo($this->lng->txt(
'tst_setting_offer_hints_info'));
1188 $form->
addItem($checkBoxOfferHints);
1191 $instant_feedback_enabled =
new ilCheckboxInputGUI($this->lng->txt(
'tst_instant_feedback'),
'instant_feedback_enabled');
1192 $instant_feedback_enabled->
setInfo($this->lng->txt(
'tst_instant_feedback_desc'));
1193 $instant_feedback_enabled->setChecked($this->testOBJ->isAnyInstantFeedbackOptionEnabled());
1194 $form->
addItem($instant_feedback_enabled);
1195 $instant_feedback_contents =
new ilCheckboxGroupInputGUI($this->lng->txt(
'tst_instant_feedback_contents'),
'instant_feedback_contents');
1198 $this->lng->txt(
'tst_instant_feedback_results'),
1199 'instant_feedback_points',
1200 $this->lng->txt(
'tst_instant_feedback_results_desc')
1203 $this->lng->txt(
'tst_instant_feedback_answer_generic'),
1204 'instant_feedback_generic',
1205 $this->lng->txt(
'tst_instant_feedback_answer_generic_desc')
1208 $this->lng->txt(
'tst_instant_feedback_answer_specific'),
1209 'instant_feedback_specific',
1210 $this->lng->txt(
'tst_instant_feedback_answer_specific_desc')
1213 $this->lng->txt(
'tst_instant_feedback_solution'),
1214 'instant_feedback_solution',
1215 $this->lng->txt(
'tst_instant_feedback_solution_desc')
1217 $instant_feedback_contents->setValue($this->testOBJ->getInstantFeedbackOptionsAsArray());
1218 $instant_feedback_enabled->addSubItem($instant_feedback_contents);
1220 $this->lng->txt(
'tst_instant_feedback_trigger'),
1221 'instant_feedback_trigger' 1224 $this->lng->txt(
'tst_instant_feedback_trigger_manual'),
1225 self::INSTANT_FEEDBACK_TRIGGER_MANUAL
1227 $ifbTriggerOpt->
setInfo($this->lng->txt(
'tst_instant_feedback_trigger_manual_desc'));
1228 $instant_feedback_trigger->addOption($ifbTriggerOpt);
1230 $this->lng->txt(
'tst_instant_feedback_trigger_forced'),
1231 self::INSTANT_FEEDBACK_TRIGGER_FORCED
1233 $ifbTriggerOpt->
setInfo($this->lng->txt(
'tst_instant_feedback_trigger_forced_desc'));
1234 $instant_feedback_trigger->addOption($ifbTriggerOpt);
1235 $instant_feedback_trigger->setValue($this->testOBJ->isForceInstantFeedbackEnabled());
1236 $instant_feedback_enabled->addSubItem($instant_feedback_trigger);
1239 $this->lng->txt(
'tst_answer_fixation_handling'),
1240 'answer_fixation_handling' 1243 $this->lng->txt(
'tst_answer_fixation_none'),
1244 self::ANSWER_FIXATION_NONE
1246 $radioOption->
setInfo($this->lng->txt(
'tst_answer_fixation_none_desc'));
1247 $answerFixation->addOption($radioOption);
1249 $this->lng->txt(
'tst_answer_fixation_on_instant_feedback'),
1250 self::ANSWER_FIXATION_ON_INSTANT_FEEDBACK
1252 $radioOption->
setInfo($this->lng->txt(
'tst_answer_fixation_on_instant_feedback_desc'));
1253 $answerFixation->addOption($radioOption);
1255 $this->lng->txt(
'tst_answer_fixation_on_followup_question'),
1256 self::ANSWER_FIXATION_ON_FOLLOWUP_QUESTION
1258 $radioOption->
setInfo($this->lng->txt(
'tst_answer_fixation_on_followup_question_desc'));
1259 $answerFixation->addOption($radioOption);
1261 $this->lng->txt(
'tst_answer_fixation_on_instantfb_or_followupqst'),
1262 self::ANSWER_FIXATION_ON_IFB_OR_FUQST
1264 $radioOption->
setInfo($this->lng->txt(
'tst_answer_fixation_on_instantfb_or_followupqst_desc'));
1265 $answerFixation->addOption($radioOption);
1267 $form->
addItem($answerFixation);
1270 $checkBoxEnableObligations =
new ilCheckboxInputGUI($this->lng->txt(
'tst_setting_enable_obligations_label'),
'obligations_enabled');
1271 $checkBoxEnableObligations->
setChecked($this->testOBJ->areObligationsEnabled());
1272 $checkBoxEnableObligations->setInfo($this->lng->txt(
'tst_setting_enable_obligations_info'));
1273 $form->
addItem($checkBoxEnableObligations);
1277 require_once
'Services/UIComponent/CharSelector/classes/class.ilCharSelectorGUI.php';
1279 $char_selector->getConfig()->setAvailability($this->testOBJ->getCharSelectorAvailability());
1280 $char_selector->getConfig()->setDefinition($this->testOBJ->getCharSelectorDefinition());
1281 $char_selector->addFormProperties($form);
1282 $char_selector->setFormValues($form);
1285 if ($this->testOBJ->participantDataExist()) {
1286 $checkBoxOfferHints->setDisabled(
true);
1287 $instant_feedback_enabled->setDisabled(
true);
1288 $instant_feedback_trigger->setDisabled(
true);
1289 $instant_feedback_contents->setDisabled(
true);
1290 $answerFixation->setDisabled(
true);
1291 $checkBoxEnableObligations->setDisabled(
true);
1301 $this->testOBJ->setTitleOutput($form->
getItemByPostVar(
'title_output')->getValue());
1305 $this->testOBJ->setAutosave($form->
getItemByPostVar(
'autosave')->getChecked());
1306 $this->testOBJ->setAutosaveIval($form->
getItemByPostVar(
'autosave_ival')->getValue() * 1000);
1310 $this->testOBJ->setShuffleQuestions($form->
getItemByPostVar(
'chb_shuffle_questions')->getChecked());
1313 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'offer_hints')) {
1314 $this->testOBJ->setOfferingQuestionHintsEnabled($form->
getItemByPostVar(
'offer_hints')->getChecked());
1317 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'instant_feedback_enabled')) {
1320 $this->testOBJ->setInstantFeedbackOptionsByArray(
1325 $this->testOBJ->setForceInstantFeedbackEnabled(
1330 $this->testOBJ->setInstantFeedbackOptionsByArray(array());
1331 $this->testOBJ->setForceInstantFeedbackEnabled(
false);
1335 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'answer_fixation_handling')) {
1339 if (!$this->testOBJ->participantDataExist() && $this->
formPropertyExists($form,
'obligations_enabled')) {
1340 $this->testOBJ->setObligationsEnabled($form->
getItemByPostVar(
'obligations_enabled')->getChecked());
1344 require_once
'Services/UIComponent/CharSelector/classes/class.ilCharSelectorGUI.php';
1346 $char_selector->addFormProperties($form);
1347 $char_selector->getFormValues($form);
1348 $this->testOBJ->setCharSelectorAvailability($char_selector->getConfig()->getAvailability());
1349 $this->testOBJ->setCharSelectorDefinition($char_selector->getConfig()->getDefinition());
1360 $seqheader->setTitle($this->lng->txt(
"tst_sequence_properties"));
1364 $prevanswers =
new ilCheckboxInputGUI($this->lng->txt(
"tst_use_previous_answers"),
"chb_use_previous_answers");
1366 $prevanswers->setChecked($this->testOBJ->getUsePreviousAnswers());
1367 $prevanswers->setInfo($this->lng->txt(
"tst_use_previous_answers_description"));
1371 $cancel =
new ilCheckboxInputGUI($this->lng->txt(
"tst_show_cancel"),
"chb_show_cancel");
1373 $cancel->setChecked($this->testOBJ->getShowCancel());
1374 $cancel->setInfo($this->lng->txt(
"tst_show_cancel_description"));
1380 $this->lng->txt(
"tst_postpone_off"),
1382 $this->lng->txt(
"tst_postpone_off_desc")
1385 $this->lng->txt(
"tst_postpone_on"),
1387 $this->lng->txt(
"tst_postpone_on_desc")
1389 $postpone->setValue((
int) $this->testOBJ->getSequenceSettings());
1393 $list_of_questions =
new ilCheckboxInputGUI($this->lng->txt(
"tst_show_summary"),
"list_of_questions");
1396 $list_of_questions->setChecked($this->testOBJ->getListOfQuestions());
1397 $list_of_questions->setInfo($this->lng->txt(
"tst_show_summary_description"));
1400 $list_of_questions_options->addOption(
new ilCheckboxOption($this->lng->txt(
"tst_list_of_questions_start"),
'chb_list_of_questions_start',
''));
1401 $list_of_questions_options->addOption(
new ilCheckboxOption($this->lng->txt(
"tst_list_of_questions_end"),
'chb_list_of_questions_end',
''));
1402 $list_of_questions_options->addOption(
new ilCheckboxOption($this->lng->txt(
"tst_list_of_questions_with_description"),
'chb_list_of_questions_with_description',
''));
1404 if ($this->testOBJ->getListOfQuestionsStart()) {
1405 array_push($values,
'chb_list_of_questions_start');
1407 if ($this->testOBJ->getListOfQuestionsEnd()) {
1408 array_push($values,
'chb_list_of_questions_end');
1410 if ($this->testOBJ->getListOfQuestionsDescription()) {
1411 array_push($values,
'chb_list_of_questions_with_description');
1413 $list_of_questions_options->setValue($values);
1415 $list_of_questions->addSubItem($list_of_questions_options);
1416 $form->
addItem($list_of_questions);
1419 $marking =
new ilCheckboxInputGUI($this->lng->txt(
"question_marking"),
"chb_show_marker");
1421 $marking->setChecked($this->testOBJ->getShowMarker());
1422 $marking->setInfo($this->lng->txt(
"question_marking_description"));
1432 $this->testOBJ->setUsePreviousAnswers($form->
getInput(
'chb_use_previous_answers'));
1436 $this->testOBJ->setShowCancel($form->
getItemByPostVar(
'chb_show_cancel')->getChecked());
1440 $this->testOBJ->setPostponingEnabled((
bool) $form->
getItemByPostVar(
'postpone')->getValue());
1443 $this->testOBJ->setListOfQuestions($form->
getItemByPostVar(
'list_of_questions')->getChecked());
1444 $listOfQuestionsOptions = $form->
getItemByPostVar(
'list_of_questions_options')->getValue();
1445 if (is_array($listOfQuestionsOptions)) {
1446 $this->testOBJ->setListOfQuestionsStart(in_array(
'chb_list_of_questions_start', $listOfQuestionsOptions));
1447 $this->testOBJ->setListOfQuestionsEnd(in_array(
'chb_list_of_questions_end', $listOfQuestionsOptions));
1448 $this->testOBJ->setListOfQuestionsDescription(in_array(
'chb_list_of_questions_with_description', $listOfQuestionsOptions));
1450 $this->testOBJ->setListOfQuestionsStart(0);
1451 $this->testOBJ->setListOfQuestionsEnd(0);
1452 $this->testOBJ->setListOfQuestionsDescription(0);
1456 $this->testOBJ->setShowMarker($form->
getItemByPostVar(
'chb_show_marker')->getChecked());
1466 $testFinishHeader->setTitle($this->lng->txt(
"tst_final_information"));
1467 $form->
addItem($testFinishHeader);
1470 $enable_examview =
new ilCheckboxInputGUI($this->lng->txt(
"enable_examview"),
'enable_examview');
1472 $enable_examview->setChecked($this->testOBJ->getEnableExamview());
1473 $enable_examview->setInfo($this->lng->txt(
"enable_examview_desc"));
1475 $show_examview_pdf->setValue(1);
1476 $show_examview_pdf->setChecked($this->testOBJ->getShowExamviewPdf());
1477 $show_examview_pdf->setOptionTitle($this->lng->txt(
"show_examview_pdf"));
1478 $enable_examview->addSubItem($show_examview_pdf);
1479 $form->
addItem($enable_examview);
1482 $showfinal =
new ilCheckboxInputGUI($this->lng->txt(
"final_statement"),
"showfinalstatement");
1483 $showfinal->
setChecked($this->testOBJ->getShowFinalStatement());
1484 $showfinal->setInfo($this->lng->txt(
"final_statement_show_desc"));
1487 $finalstatement =
new ilTextAreaInputGUI($this->lng->txt(
"final_statement"),
"finalstatement");
1489 $finalstatement->setValue($this->testOBJ->prepareTextareaOutput($this->testOBJ->getFinalStatement(),
false,
true));
1490 $finalstatement->setRows(10);
1491 $finalstatement->setCols(80);
1492 $finalstatement->setUseRte(
true);
1493 $finalstatement->addPlugin(
"latex");
1494 $finalstatement->addButton(
"latex");
1495 $finalstatement->setRTESupport($this->testOBJ->getId(),
"tst",
"assessment");
1496 $finalstatement->setRteTagSet(
'full');
1497 $showfinal->addSubItem($finalstatement);
1499 $redirection_mode = $this->testOBJ->getRedirectionMode();
1500 $rm_enabled =
new ilCheckboxInputGUI($this->lng->txt(
'redirect_after_finishing_tst'),
'redirection_enabled');
1501 $rm_enabled->
setInfo($this->lng->txt(
'redirect_after_finishing_tst_desc'));
1502 $rm_enabled->setChecked($redirection_mode ==
'0' ?
false :
true);
1503 $radio_rm =
new ilRadioGroupInputGUI($this->lng->txt(
'redirect_after_finishing_rule'),
'redirection_mode');
1505 $radio_rm->addOption($always);
1507 $radio_rm->addOption($kiosk);
1509 $rm_enabled->addSubItem($radio_rm);
1510 $redirection_url =
new ilTextInputGUI($this->lng->txt(
'redirection_url'),
'redirection_url');
1511 $redirection_url->setValue((
string) $this->testOBJ->getRedirectionUrl());
1512 $redirection_url->setRequired(
true);
1513 $rm_enabled->addSubItem($redirection_url);
1518 $sign_submission = $this->testOBJ->getSignSubmission();
1519 $sign_submission_enabled =
new ilCheckboxInputGUI($this->lng->txt(
'sign_submission'),
'sign_submission');
1520 $sign_submission_enabled->
setChecked($sign_submission);
1521 $sign_submission_enabled->setInfo($this->lng->txt(
'sign_submission_info'));
1522 $form->
addItem($sign_submission_enabled);
1525 $mailnotification =
new ilCheckboxInputGUI($this->lng->txt(
"tst_finish_notification"),
"mailnotification");
1526 $mailnotification->
setInfo($this->lng->txt(
"tst_finish_notification_desc"));
1527 $mailnotification->setChecked($this->testOBJ->getMailNotification() > 0);
1528 $form->
addItem($mailnotification);
1530 $mailnotificationContent =
new ilRadioGroupInputGUI($this->lng->txt(
"tst_finish_notification_content"),
"mailnotification_content");
1531 $mailnotificationContent->
addOption(
new ilRadioOption($this->lng->txt(
"tst_finish_notification_simple"), 1,
''));
1532 $mailnotificationContent->addOption(
new ilRadioOption($this->lng->txt(
"tst_finish_notification_advanced"), 2,
''));
1533 $mailnotificationContent->setValue($this->testOBJ->getMailNotification() ? $this->testOBJ->getMailNotification() : 1);
1534 $mailnotificationContent->setRequired(
true);
1535 $mailnotification->addSubItem($mailnotificationContent);
1538 $mailnottype->setValue(1);
1539 $mailnottype->setOptionTitle($this->lng->txt(
"mailnottype"));
1540 $mailnottype->setChecked($this->testOBJ->getMailNotificationType());
1541 $mailnotification->addSubItem($mailnottype);
1550 $this->testOBJ->setEnableExamview($form->
getItemByPostVar(
'enable_examview')->getChecked());
1551 $this->testOBJ->setShowExamviewPdf($form->
getItemByPostVar(
'show_examview_pdf')->getChecked());
1554 $this->testOBJ->setShowFinalStatement($form->
getItemByPostVar(
'showfinalstatement')->getChecked());
1555 $this->testOBJ->setFinalStatement($form->
getItemByPostVar(
'finalstatement')->getValue());
1558 $this->testOBJ->setRedirectionMode($form->
getItemByPostVar(
'redirection_mode')->getValue());
1563 $this->testOBJ->setRedirectionUrl($form->
getItemByPostVar(
'redirection_url')->getValue());
1565 $this->testOBJ->setRedirectionUrl(null);
1569 $this->testOBJ->setSignSubmission($form->
getItemByPostVar(
'sign_submission')->getChecked());
1573 $this->testOBJ->setMailNotification($form->
getItemByPostVar(
'mailnotification_content')->getValue());
1574 $this->testOBJ->setMailNotificationType($form->
getItemByPostVar(
'mailnottype')->getChecked());
1576 $this->testOBJ->setMailNotification(0);
1577 $this->testOBJ->setMailNotificationType(
false);
1583 switch ($formValue) {
1584 case self::ANSWER_FIXATION_NONE:
1585 $this->testOBJ->setInstantFeedbackAnswerFixationEnabled(
false);
1586 $this->testOBJ->setFollowupQuestionAnswerFixationEnabled(
false);
1588 case self::ANSWER_FIXATION_ON_INSTANT_FEEDBACK:
1589 $this->testOBJ->setInstantFeedbackAnswerFixationEnabled(
true);
1590 $this->testOBJ->setFollowupQuestionAnswerFixationEnabled(
false);
1592 case self::ANSWER_FIXATION_ON_FOLLOWUP_QUESTION:
1593 $this->testOBJ->setInstantFeedbackAnswerFixationEnabled(
false);
1594 $this->testOBJ->setFollowupQuestionAnswerFixationEnabled(
true);
1596 case self::ANSWER_FIXATION_ON_IFB_OR_FUQST:
1597 $this->testOBJ->setInstantFeedbackAnswerFixationEnabled(
true);
1598 $this->testOBJ->setFollowupQuestionAnswerFixationEnabled(
true);
1605 if ($this->testOBJ->isInstantFeedbackAnswerFixationEnabled() && $this->testOBJ->isFollowupQuestionAnswerFixationEnabled()) {
1606 return self::ANSWER_FIXATION_ON_IFB_OR_FUQST;
1609 if ($this->testOBJ->isFollowupQuestionAnswerFixationEnabled()) {
1610 return self::ANSWER_FIXATION_ON_FOLLOWUP_QUESTION;
1613 if ($this->testOBJ->isInstantFeedbackAnswerFixationEnabled()) {
1614 return self::ANSWER_FIXATION_ON_INSTANT_FEEDBACK;
1617 return self::ANSWER_FIXATION_NONE;
saveGeneralProperties(ilPropertyFormGUI $form)
addAvailabilityProperties(ilPropertyFormGUI $form)
This class represents an option in a radio group.
This class provides processing control methods.
const INSTANT_FEEDBACK_TRIGGER_FORCED
saveTestFinishProperties(ilPropertyFormGUI $form)
showResetTemplateConfirmationCmd()
Enable all settings - Confirmation.
This class represents an option in a checkbox group.
performSaveForm(ilPropertyFormGUI $form)
const QUESTION_SET_TYPE_RANDOM
type setting value for random question set
This shows a character selector.
saveTestSequenceSettings(ilPropertyFormGUI $form)
static getSystemMessageHTML($a_txt, $a_type="info")
Get HTML for a system message.
const ANSWER_FIXATION_NONE
const CMD_SHOW_RESET_TPL_CONFIRM
getAnswerFixationSettingsAsFormValue()
removeHiddenItems(ilPropertyFormGUI $form)
const REDIRECT_NONE
Redirect after finishing test constants.
savePresentationProperties(ilPropertyFormGUI $form)
setInfo($a_info)
Set Info.
$testQuestionSetConfigFactory
static _getAllReferences($a_id)
get all reference ids of object
Interface ilAccessHandler.
static getInstance()
Get instance.
Administration class for plugins.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
setAnswerFixationSettingsByFormValue($formValue)
const ANSWER_FIXATION_ON_INSTANT_FEEDBACK
addQuestionBehaviourProperties(ilPropertyFormGUI $form)
setValue($a_value)
Set Value.
const INSTANT_FEEDBACK_TRIGGER_MANUAL
const CMD_CONFIRMED_SAVE_FORM
isSectionHeaderRequired($fields)
addGeneralProperties(ilPropertyFormGUI $form)
setCols($a_cols)
Set Cols.
saveTestAccessProperties(ilPropertyFormGUI $form)
saveTestIntroProperties(ilPropertyFormGUI $form)
__construct(ilCtrl $ctrl, ilAccessHandler $access, ilLanguage $lng, ilTree $tree, ilDBInterface $db, ilPluginAdmin $pluginAdmin, ilObjUser $activeUser, ilObjTestGUI $testGUI)
Constructor.
saveQuestionBehaviourProperties(ilPropertyFormGUI $form)
static isSkillManagementGloballyActivated()
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
isCharSelectorPropertyRequired()
static updateServiceSettingsForm($a_obj_id, ilPropertyFormGUI $form, $services)
Update service settings.
const CMD_CONFIRMED_RESET_TPL
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
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)
getSettingsTemplateMessageHTML()
This class represents a text area property in a property form.
isSkillServiceSettingToBeAdjusted(ilPropertyFormGUI $form)
showFormCmd(ilPropertyFormGUI $form=null)
static initServiceSettingsForm($a_obj_id, ilPropertyFormGUI $form, $services)
Init service settings form.
const QUESTION_SET_TYPE_FIXED
type setting value for fixed question set
formPropertyExists(ilPropertyFormGUI $form, $propertyId)
addPresentationProperties(ilPropertyFormGUI $form)
saveFormCmd($isConfirmedSave=false)
const ANSWER_FIXATION_ON_IFB_OR_FUQST
const ORGU_POSITION_ACCESS
saveTestRunProperties(ilPropertyFormGUI $form)
const QUESTION_SET_TYPE_DYNAMIC
type setting value for dynamic question set (continues testing mode)
addTestAccessProperties(ilPropertyFormGUI $form)
saveAvailabilityProperties(ilPropertyFormGUI $form)
const ANSWER_FIXATION_ON_FOLLOWUP_QUESTION
const CMD_SHOW_FORM
command constants
confirmedResetTemplateCmd()
Enable all settings - remove template.
Confirmation screen class.