47 $component_repository = $DIC[
'component.repository'];
50 $ilTabs = $DIC[
'ilTabs'];
54 $ilTabs->clearTargets();
56 $cmd = $this->
ctrl->getCmd();
57 $next_class = $this->
ctrl->getNextClass($this);
59 $this->
ctrl->saveParameter($this,
"sequence");
60 $this->
ctrl->saveParameter($this,
"pmode");
61 $this->
ctrl->saveParameter($this,
"active_id");
74 $this->testSequence = $testSequenceFactory->getSequenceByTestSession($this->testSession);
75 $this->testSequence->loadFromDb();
76 $this->testSequence->loadQuestions();
78 $DIC->globalScreen()->tool()->context()->current()->addAdditionalData(
80 $this->
object->getKioskMode()
82 $title = $this->
object->getTitle();
84 $title .=
' - ' . $this->
lng->txt(
'question') . $sequence_index;
86 $DIC->globalScreen()->tool()->context()->current()->addAdditionalData(
90 $instance_name = $DIC[
'ilSetting']->get(
'short_inst_name');
91 if (trim($instance_name) ===
'') {
92 $instance_name =
'ILIAS';
94 $DIC->globalScreen()->tool()->context()->current()->addAdditionalData(
108 switch ($next_class) {
109 case 'ilassquestionpagegui':
115 $ret = $this->
ctrl->forwardCommand($page_gui);
118 case 'iltestsubmissionreviewgui':
123 $ret = $this->
ctrl->forwardCommand($gui);
126 case 'ilassquestionhintrequestgui':
129 $questionGUI = $this->
object->createQuestionGUI(
131 $this->testSequence->getQuestionForSequence($this->getCurrentSequenceElement())
135 $questionGUI->object->getId(),
136 $this->testSession->getActiveId(),
137 $this->testSession->getPass()
145 $ret = $this->
ctrl->forwardCommand($gui);
149 case 'iltestsignaturegui':
153 $ret = $this->
ctrl->forwardCommand($gui);
156 case 'iltestpasswordprotectiongui':
160 $ret = $this->
ctrl->forwardCommand($gui);
168 if (strtolower($cmd) ===
'showquestion') {
170 $testPassesSelector->setActiveId($this->testSession->getActiveId());
171 $testPassesSelector->setLastFinishedPass($this->testSession->getLastFinishedPass());
173 if (!$testPassesSelector->openPassExists()) {
174 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'tst_pass_finished'),
true);
175 $this->
ctrl->redirectByClass(
"ilobjtestgui",
"infoScreen");
180 $ret = $this->$cmd();
194 $this->testSession->setUserId(
$ilUser->getId());
196 if ($access_code != null && isset($access_code[$this->
object->getTestId()])) {
197 $this->testSession->setAnonymousId((
int) $access_code[$this->
object->getTestId()]);
202 $this->testSession->saveToDb();
204 $active_id = $this->testSession->getActiveId();
205 $this->
ctrl->setParameter($this,
"active_id", $active_id);
207 $shuffle = $this->
object->getShuffleQuestions();
208 if ($this->
object->isRandomTest()) {
211 $this->
object->loadQuestions();
215 assQuestion::_updateTestPassResults(
217 $this->testSession->getPass(),
218 $this->
object->areObligationsEnabled(),
220 $this->
object->getId()
224 if (!$this->testSequence->hasSequence()) {
225 $this->testSequence->createNewSequence($this->
object->getQuestionCount(), $shuffle);
226 $this->testSequence->saveToDb();
229 $this->testSequence->loadFromDb();
230 $this->testSequence->loadQuestions();
232 if ($this->testSession->isObjectiveOriented()) {
235 $objectivesAdapter->notifyTestStart($this->testSession, $this->
object->getId());
236 $objectivesAdapter->prepareTestPass($this->testSession, $this->testSequence);
238 $objectivesAdapter->buildQuestionRelatedObjectiveList(
240 $this->questionRelatedObjectivesList
243 if ($this->testSequence->hasOptionalQuestions()) {
246 $this->testSequence->reorderOptionalQuestionsToSequenceEnd();
247 $this->testSequence->saveToDb();
251 $active_time_id = $this->
object->startWorkingTime(
252 $this->testSession->getActiveId(),
253 $this->testSession->getPass()
259 $sequenceElement = $this->testSequence->getFirstSequence();
261 $this->
ctrl->setParameter($this,
'sequence', $sequenceElement);
262 $this->
ctrl->setParameter($this,
'pmode',
'');
264 if ($this->
object->getListOfQuestionsStart()) {
281 if ($sequenceElement ===
false) {
285 if ($sequenceElement < 1) {
289 if (!$this->testSequence->getPositionOfSequence($sequenceElement)) {
302 $this->
object->startWorkingTime(
303 $this->testSession->getActiveId(),
304 $this->testSession->getPass()
309 $help = $DIC->help();
310 $help->setScreenIdComponent(
"tst");
311 $help->setScreenId(
"assessment");
312 $help->setSubScreenId(
"question");
317 $sequenceElement = $this->testSequence->getFirstSequence();
320 $this->testSession->setLastSequence($sequenceElement);
321 $this->testSession->saveToDb();
324 $questionId = $this->testSequence->getQuestionForSequence($sequenceElement);
326 if (!(
int) $questionId && $this->testSession->isObjectiveOriented()) {
330 if (!$this->testSequence->isQuestionPresented($questionId)) {
331 $this->testSequence->setQuestionPresented($questionId);
332 $this->testSequence->saveToDb();
336 $this->testSession->getActiveId(),
338 $this->testSession->getPass()
344 $instantResponse =
true;
348 if ($this->
object->isInstantFeedbackAnswerFixationEnabled()) {
349 $instantResponse =
false;
362 $questionGui->setSequenceNumber($this->testSequence->getPositionOfSequence($sequenceElement));
363 $questionGui->setQuestionCount($this->testSequence->getUserQuestionCount());
366 $headerBlockBuilder->setHeaderMode($this->
object->getTitleOutput());
367 $headerBlockBuilder->setQuestionTitle($questionGui->object->getTitleForHTMLOutput());
368 $headerBlockBuilder->setQuestionPoints($questionGui->object->getPoints());
369 $headerBlockBuilder->setQuestionPosition($this->testSequence->getPositionOfSequence($sequenceElement));
370 $headerBlockBuilder->setQuestionCount($this->testSequence->getUserQuestionCount());
371 $headerBlockBuilder->setQuestionPostponed($this->testSequence->isPostponedQuestion($questionId));
372 $headerBlockBuilder->setQuestionObligatory(
375 if ($this->testSession->isObjectiveOriented()) {
377 $objectivesAdapter->buildQuestionRelatedObjectiveList($this->testSequence, $this->questionRelatedObjectivesList);
378 $this->questionRelatedObjectivesList->loadObjectivesTitles();
380 $objectivesString = $this->questionRelatedObjectivesList->getQuestionRelatedObjectiveTitles($questionId);
381 $headerBlockBuilder->setQuestionRelatedObjectives($objectivesString);
383 $questionGui->setQuestionHeaderBlockBuilder($headerBlockBuilder);
385 $this->
prepareTestPage($presentationMode, $sequenceElement, $questionId);
388 $navigationToolbarGUI->setFinishTestButtonEnabled(
true);
392 $this->
ctrl->setParameter($this,
'sequence', $sequenceElement);
393 $this->
ctrl->setParameter($this,
'pmode', $presentationMode);
396 switch ($presentationMode) {
400 $navigationToolbarGUI->setDisabledStateEnabled(
false);
402 $this->
showQuestionEditable($questionGui, $formAction, $isQuestionWorkedThrough, $instantResponse);
408 if ($this->testSequence->isQuestionOptional($questionGui->object->getId())) {
412 $this->
showQuestionViewable($questionGui, $formAction, $isQuestionWorkedThrough, $instantResponse);
420 $navigationToolbarGUI->build();
427 if ($instantResponse) {
452 if ($this->
object->isForceInstantFeedbackEnabled()) {
458 $questionId = $this->testSequence->getQuestionForSequence(
467 $nextSequenceElement = $this->testSequence->getFirstSequence();
470 $this->testSession->setLastSequence($nextSequenceElement);
471 $this->testSession->saveToDb();
473 $this->
ctrl->setParameter($this,
'sequence', $nextSequenceElement);
474 $this->
ctrl->setParameter($this,
'pmode',
'');
483 $questionId = $this->testSequence->getQuestionForSequence(
489 if ($this->
object->isForceInstantFeedbackEnabled()) {
490 $this->
ctrl->setParameter($this,
'instresp', 1);
492 $this->testSequence->setQuestionChecked($questionId);
493 $this->testSequence->saveToDb();
499 $this->
ctrl->setParameter($this,
'pmode',
'');
518 $this->
ctrl->saveParameter($this,
'sequence');
529 $this->testSequence->getQuestionForSequence($currentSequenceElement)
532 $currentQuestionOBJ->resetUsersAnswer(
533 $this->testSession->getActiveId(),
534 $this->testSession->getPass()
537 $this->
ctrl->saveParameter($this,
'sequence');
547 $nextSequenceElement = $this->testSequence->getNextSequence($curSequenceElement);
550 $nextSequenceElement = $this->testSequence->getFirstSequence();
553 if ($this->
object->isPostponingEnabled()) {
554 $this->testSequence->postponeSequence($curSequenceElement);
555 $this->testSequence->saveToDb();
558 $this->
ctrl->setParameter($this,
'sequence', $nextSequenceElement);
559 $this->
ctrl->setParameter($this,
'pmode',
'');
566 $questionId = $this->testSequence->getQuestionForSequence($sequenceElement);
569 $this->testSession->getActiveId(),
571 $this->testSession->getPass()
574 if (!$isQuestionWorkedThrough) {
575 $this->testSequence->postponeQuestion($questionId);
576 $this->testSequence->saveToDb();
582 $testObj =
new ilObjTest($this->ref_id,
true);
584 $participants = $testObj->getActiveParticipantList();
585 $participant = $participants->getParticipantByActiveId($this->testrequest->getActiveId());
586 if (!$participant || !$participant->hasUnfinishedPasses()) {
587 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"tst_current_run_no_longer_valid"),
true);
596 $nextSequenceElement = $this->testSequence->getNextSequence($lastSequenceElement);
598 if ($this->
object->isPostponingEnabled()) {
603 $nextSequenceElement = $this->testSequence->getFirstSequence();
606 $this->
ctrl->setParameter($this,
'sequence', $nextSequenceElement);
607 $this->
ctrl->setParameter($this,
'pmode',
'');
616 $sequenceElement = $this->testSequence->getPreviousSequence(
621 $sequenceElement = $this->testSequence->getLastSequence();
624 $this->
ctrl->setParameter($this,
'sequence', $sequenceElement);
625 $this->
ctrl->setParameter($this,
'pmode',
'');
632 return $sequenceElement == $this->testSequence->getFirstSequence();
637 return $sequenceElement == $this->testSequence->getLastSequence();
655 return $this->testSequence->getQuestionForSequence($this->testrequest->raw(
"sequence"));
664 $this->saveResult =
false;
666 $formtimestamp = $_POST[
"formtimestamp"] ??
'';
667 if (strlen($formtimestamp) == 0) {
668 $formtimestamp = $this->testrequest->raw(
"formtimestamp");
689 $q_id = $this->testSequence->getQuestionForSequence($this->testrequest->raw(
"sequence"));
696 if (is_numeric($q_id) && (
int) $q_id) {
699 $active_id = (
int) $this->testSession->getActiveId();
701 $this->saveResult = $questionOBJ->persistWorkingState(
704 $this->
object->areObligationsEnabled(),
708 if ($authorized && $this->testSession->isObjectiveOriented()) {
710 $objectivesAdapter->updateQuestionResult($this->testSession, $questionOBJ);
713 if ($authorized && $this->
object->isSkillServiceToBeConsidered()) {
719 if ($this->saveResult ==
false || (!$questionOBJ->validateSolutionSubmit() && $questionOBJ->savePartial())) {
720 $this->
ctrl->setParameter($this,
"save_error",
"1");
729 $questionId = $this->testSequence->getQuestionForSequence(
740 $this->testSequence->setQuestionChecked($questionId);
741 $this->testSequence->saveToDb();
742 } elseif ($this->
object->isForceInstantFeedbackEnabled()) {
743 $this->testSequence->setQuestionChecked($questionId);
744 $this->testSequence->saveToDb();
747 $this->
ctrl->setParameter($this,
'instresp', 1);
760 $questionId = $this->testSequence->getQuestionForSequence(
777 if ($this->testSession->getActiveId() > 0) {
778 if ($this->testSequence->hasRandomQuestionsForPass($this->testSession->getActiveId(), $this->testSession->getPass()) > 0) {
783 $ilLog = $DIC[
'ilLog'];
787 __METHOD__ .
' Random Questions allready exists for user ' .
788 $ilUser->getId() .
' in test ' . $this->
object->getTestId()
797 $ilLog = $DIC[
'ilLog'];
800 $ilLog->write(__METHOD__ .
' ' . sprintf(
801 $this->
lng->txt(
"error_random_question_generation"),
803 $this->
object->getTestId()
815 $tree = $DIC[
'tree'];
816 $ilDB = $DIC[
'ilDB'];
817 $component_repository = $DIC[
'component.repository'];
820 $questionSetConfig->loadFromDb();
825 $sourcePoolDefinitionList->loadDefinitions();
827 $this->processLocker->executeRandomPassBuildOperation(
function () use (
$ilDB, $component_repository, $questionSetConfig, $sourcePoolDefinitionList) {
833 $questionSetBuilder->performBuild($this->testSession);
835 }, $sourcePoolDefinitionList->hasTaxonomyFilters());
845 $active_id = $this->testSession->getActiveId();
846 $this->
ctrl->setParameter($this,
"active_id", $active_id);
848 $active_time_id = $this->
object->startWorkingTime($active_id, $this->testSession->getPass());
852 if ($this->
object->isRandomTest()) {
853 if (!$this->testSequence->hasRandomQuestionsForPass($active_id, $this->testSession->getPass())) {
859 $shuffle = $this->
object->getShuffleQuestions();
860 if ($this->
object->isRandomTest()) {
864 assQuestion::_updateTestPassResults(
866 $this->testSession->getPass(),
867 $this->
object->areObligationsEnabled(),
869 $this->
object->getId()
873 if (!$this->testSequence->hasSequence()) {
874 $this->testSequence->createNewSequence($this->
object->getQuestionCount(), $shuffle);
875 $this->testSequence->saveToDb();
878 if ($this->
object->getListOfQuestionsStart()) {
882 $this->
ctrl->setParameter($this,
'sequence', $this->testSession->getLastSequence());
883 $this->
ctrl->setParameter($this,
'pmode',
'');
889 return $this->testSequence->isPostponedQuestion($questionId);
895 $ilDB = $DIC[
'ilDB'];
904 $userSolutionAdopter->setUserId(
$ilUser->getId());
905 $userSolutionAdopter->setActiveId($this->testSession->getActiveId());
906 $userSolutionAdopter->setTargetPass($this->testSequence->getPass());
907 $userSolutionAdopter->setQuestionIds($this->testSequence->getOptionalQuestions());
909 $userSolutionAdopter->perform();
916 if ($this->testSequence->isAnsweringOptionalQuestionsConfirmed()) {
920 $questionId = $this->testSequence->getQuestionForSequence($sequenceKey);
922 if (!$this->testSequence->isQuestionOptional($questionId)) {
936 $this->tpl->setOnScreenMessage(
'failure', sprintf($this->
lng->txt(
'tst_objective_oriented_test_pass_without_questions'), $this->
object->getTitle()),
true);
948 $isNextPrimary =
true;
950 if ($this->
object->isForceInstantFeedbackEnabled()) {
951 $isNextPrimary =
false;
955 $this->testSession->getActiveId(),
956 $this->testSession->getPass(),
957 $this->testSequence->getOrderedSequenceQuestions()
960 if (!count($questionsMissingResult)) {
962 $isNextPrimary =
false;
963 } elseif (count($questionsMissingResult) == 1) {
964 $lastOpenQuestion = current($questionsMissingResult);
966 if ($currentQuestionId == $lastOpenQuestion) {
968 $isNextPrimary =
false;
972 return $isNextPrimary;
isShowingPostponeStatusReguired($questionId)
checkTestSessionUser(ilTestSession $testSession)
isValidSequenceElement($sequenceElement)
static get(string $a_var)
isQuestionSummaryFinishTestButtonRequired()
getQuestionGuiInstance($question_id, $fromCache=true)
removeIntermediateSolution()
remove an auto-saved solution of the current question
populateQuestionOptionalMessage()
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
setAnswerChangedParameter($changed=true)
Set the 'answer changed' url parameter for generated links.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
showQuestionEditable(assQuestionGUI $questionGui, $formAction, $isQuestionWorkedThrough, $instantResponse)
getObjectiveOrientedContainer()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
updateWorkingTime()
updates working time and stores state saveresult to see if question has to be stored or not ...
handleTearsAndAngerNoObjectiveOrientedQuestion()
submitSolutionAndNextCmd()
getNextCommandParameter()
isLastQuestionInSequence($sequenceElement)
isFirstQuestionInSequence($sequenceElement)
executeCommand()
Execute Command.
handleQuestionActionCmd()
static getQuestionsMissingResultRecord(int $activeId, int $pass, array $questionIds)
resumePlayerCmd()
Resume a test at the last position.
handleUserSettings()
Handles some form parameters on starting and resuming a test.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
prepareTestPage($presentationMode, $sequenceElement, $questionId)
unregisterForcedFeedbackNavUrl()
populateInstantResponseBlocks(assQuestionGUI $questionGui, $authorizedSolution)
static isQuestionObligatory($question_id)
checks wether the question with given id is marked as obligatory or not
isNrOfTriesReached()
nr of tries exceeded
ensureExistingTestSession(ilTestSession $testSession)
populateQuestionNavigation($sequenceElement, $disabled, $primaryNext)
static getInstance(ilTestSession $a_test_session)
isForcedFeedbackNavUrlRegistered()
static _enabledAssessmentLogging()
getInstantResponseParameter()
isOptionalQuestionAnsweringConfirmationRequired($sequenceKey)
handleSkillTriggering(ilTestSession $testSession)
static _isWorkedThrough(int $active_id, int $question_id, int $pass)
Returns true if the question was worked through in the given pass Worked through means that the user ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
handleQuestionPostponing($sequenceElement)
getRegisteredForcedFeedbackNavUrl()
getCommand($cmd)
Retrieves the ilCtrl command.
const PRESENTATION_MODE_EDIT
saveNavigationPreventConfirmation()
Save the save the switch to prevent the navigation confirmation.
populateTestNavigationToolbar(ilTestNavigationToolbarGUI $toolbarGUI)
static getInstance(ilDBInterface $db, ilObjTest $testOBJ, ilTestRandomQuestionSetConfig $questionSetConfig, ilTestRandomQuestionSetSourcePoolDefinitionList $sourcePoolDefinitionList, ilTestRandomQuestionSetStagingPoolQuestionList $stagingPoolQuestionList)
const TEST_PLAYER_KIOSK_MODE_ENABLED
handlePrimaryButton(ilTestNavigationToolbarGUI $navigationToolbarGUI, $currentQuestionId)
getAnswerChangedParameter()
Get the 'answer changed' status from the current request It may be set by ilTestPlayerNavigationContr...
getSequenceElementParameter()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const PRESENTATION_MODE_VIEW
const SUBMIT_INTERMEDIATE_SOLUTION
initProcessLocker($activeId)
updateLearningProgressOnTestStart()
static redirect(string $a_script)
handlePasswordProtectionRedirect()
registerForcedFeedbackNavUrl($forcedFeedbackNavUrl)
saveQuestionSolution($authorized=true, $force=false)
saves the user input of a question
showQuestionViewable(assQuestionGUI $questionGui, $formAction, $isQuestionWorkedThrough, $instantResponse)
performTearsAndAngerBrokenConfessionChecks()
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
$questionRelatedObjectivesList
generateRandomTestPassForActiveUser()
populateInstantResponseModal(assQuestionGUI $questionGui, $navUrl)
const TEST_PLAYER_SHORT_TITLE
getNextSequenceParameter()
getNavigationUrlParameter()
handleCheckTestPassValid()
getQuestionInstance($questionId, $fromCache=true)
handleTearsAndAngerQuestionIsNull($questionId, $sequenceElement)
isMaxProcessingTimeReached()
Checks wheather the maximum processing time is reached or not.
getCurrentSequenceElement()
getTestNavigationToolbarGUI()
static set(string $a_var, $a_val)
Set a value.
static initConnectionWithAnimation()
Init YUI connection and animation module used in Modules/Test (Jan 2022)
canSaveResult()
Returns TRUE if the answers of the current user could be saved.
adoptUserSolutionsFromPreviousPass()
static isTestExecutionCommand($cmd)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
isParticipantsAnswerFixed($questionId)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...