118 $this->isRandomTest = $randomtest;
119 $this->sequencedata = array(
120 "sequence" => array(),
121 "postponed" => array(),
125 $this->alreadyCheckedQuestions = array();
126 $this->newlyCheckedQuestion = null;
128 $this->optionalQuestions = array();
129 $this->answeringOptionalQuestionsConfirmed =
false;
131 $this->considerHiddenQuestionsEnabled =
false;
132 $this->considerOptionalQuestionsEnabled =
true;
142 $newsequence = array();
144 for (
$i = 1;
$i <= $max;
$i++) {
145 array_push($newsequence,
$i);
151 $this->sequencedata[
"sequence"] = $newsequence;
160 $ilDB = $DIC[
'ilDB'];
162 $this->questions = array();
164 $result =
$ilDB->queryF(
165 "SELECT tst_test_question.* FROM tst_test_question, qpl_questions, tst_active WHERE tst_active.active_id = %s AND tst_test_question.test_fi = tst_active.test_fi AND qpl_questions.question_id = tst_test_question.question_fi ORDER BY tst_test_question.sequence",
167 array($this->active_id)
192 $ilDB = $DIC[
'ilDB'];
193 $result =
$ilDB->queryF(
194 "SELECT * FROM tst_sequence WHERE active_fi = %s AND pass = %s",
195 array(
'integer',
'integer'),
196 array($this->active_id, $this->pass)
198 if ($result->numRows()) {
199 $row =
$ilDB->fetchAssoc($result);
200 $this->sequencedata = array(
201 "sequence" => unserialize($row[
"sequence"]),
202 "postponed" => unserialize($row[
"postponed"]),
203 "hidden" => unserialize($row[
"hidden"])
205 if (!is_array($this->sequencedata[
"sequence"])) {
206 $this->sequencedata[
"sequence"] = array();
208 if (!is_array($this->sequencedata[
"postponed"])) {
209 $this->sequencedata[
"postponed"] = array();
211 if (!is_array($this->sequencedata[
"hidden"])) {
212 $this->sequencedata[
"hidden"] = array();
223 $res = $DIC->database()->queryF(
224 "SELECT question_fi FROM tst_seq_qst_presented WHERE active_fi = %s AND pass = %s",
225 array(
'integer',
'integer'),
226 array($this->active_id, $this->pass)
229 while ($row = $DIC->database()->fetchAssoc(
$res)) {
230 $this->alreadyPresentedQuestions[ $row[
'question_fi'] ] = $row[
'question_fi'];
237 $ilDB = $DIC[
'ilDB'];
240 "SELECT question_fi FROM tst_seq_qst_checked WHERE active_fi = %s AND pass = %s",
241 array(
'integer',
'integer'),
242 array($this->active_id, $this->pass)
246 $this->alreadyCheckedQuestions[ $row[
'question_fi'] ] = $row[
'question_fi'];
253 $ilDB = $DIC[
'ilDB'];
256 "SELECT question_fi FROM tst_seq_qst_optional WHERE active_fi = %s AND pass = %s",
257 array(
'integer',
'integer'),
258 array($this->active_id, $this->pass)
262 $this->optionalQuestions[ $row[
'question_fi'] ] = $row[
'question_fi'];
282 $ilDB = $DIC[
'ilDB'];
285 if ((is_array($this->sequencedata[
"postponed"])) && (count($this->sequencedata[
"postponed"]))) {
286 $postponed = serialize($this->sequencedata[
"postponed"]);
289 if ((is_array($this->sequencedata[
"hidden"])) && (count($this->sequencedata[
"hidden"]))) {
290 $hidden = serialize($this->sequencedata[
"hidden"]);
293 $affectedRows =
$ilDB->manipulateF(
294 "DELETE FROM tst_sequence WHERE active_fi = %s AND pass = %s",
295 array(
'integer',
'integer'),
296 array($this->active_id, $this->pass)
299 $affectedRows =
$ilDB->insert(
"tst_sequence", array(
300 "active_fi" => array(
"integer", $this->active_id),
301 "pass" => array(
"integer", $this->pass),
302 "sequence" => array(
"clob", serialize($this->sequencedata[
"sequence"])),
303 "postponed" => array(
"text", $postponed),
304 "hidden" => array(
"text", $hidden),
305 "tstamp" => array(
"integer", time()),
312 if ($this->newlyPresentedQuestion) {
315 $DIC->database()->replace(
'tst_seq_qst_presented', array(
316 'active_fi' => array(
'integer', $this->active_id),
317 'pass' => array(
'integer', $this->pass),
318 'question_fi' => array(
'integer', $this->newlyPresentedQuestion)
328 if ((
int) $this->newlyCheckedQuestion) {
330 $ilDB = $DIC[
'ilDB'];
332 $ilDB->replace(
'tst_seq_qst_checked', array(
333 'active_fi' => array(
'integer', $this->active_id),
334 'pass' => array(
'integer', $this->pass),
335 'question_fi' => array(
'integer', (
int) $this->newlyCheckedQuestion)
346 $ilDB = $DIC[
'ilDB'];
348 $NOT_IN_questions =
$ilDB->in(
'question_fi', $this->optionalQuestions,
true,
'integer');
351 "DELETE FROM tst_seq_qst_optional WHERE active_fi = %s AND pass = %s AND $NOT_IN_questions",
352 array(
'integer',
'integer'),
353 array($this->active_id, $this->pass)
356 foreach ($this->optionalQuestions as $questionId) {
357 $ilDB->replace(
'tst_seq_qst_optional', array(
358 'active_fi' => array(
'integer', $this->active_id),
359 'pass' => array(
'integer', $this->pass),
360 'question_fi' => array(
'integer', (
int) $questionId)
368 array_push($this->sequencedata[
"postponed"], intval($question_id));
375 array_push($this->sequencedata[
"hidden"], intval($question_id));
381 if (!is_array($this->sequencedata[
"postponed"])) {
384 if (!in_array($question_id, $this->sequencedata[
"postponed"])) {
393 if (!is_array($this->sequencedata[
"hidden"])) {
396 if (!in_array($question_id, $this->sequencedata[
"hidden"])) {
405 if (!array_key_exists($sequence, $this->questions)) {
408 if (!is_array($this->sequencedata[
"postponed"])) {
411 if (!in_array($this->questions[$sequence], $this->sequencedata[
"postponed"])) {
420 if (!array_key_exists($sequence, $this->questions)) {
423 if (!is_array($this->sequencedata[
"hidden"])) {
426 if (!in_array($this->questions[$sequence], $this->sequencedata[
"hidden"])) {
436 if (array_key_exists($sequence, $this->questions)) {
437 if (!is_array($this->sequencedata[
"postponed"])) {
438 $this->sequencedata[
"postponed"] = array();
440 array_push($this->sequencedata[
"postponed"], intval($this->questions[$sequence]));
448 if (array_key_exists($sequence, $this->questions)) {
449 if (!is_array($this->sequencedata[
"hidden"])) {
450 $this->sequencedata[
"hidden"] = array();
452 array_push($this->sequencedata[
"hidden"], intval($this->questions[$sequence]));
459 $this->newlyPresentedQuestion = $questionId;
465 $this->newlyPresentedQuestion == $questionId || in_array($questionId, $this->alreadyPresentedQuestions)
479 if ($this->newlyPresentedQuestion == $nextQstId) {
483 if (in_array($nextQstId, $this->alreadyPresentedQuestions)) {
492 $this->newlyCheckedQuestion = $questionId;
497 return isset($this->alreadyCheckedQuestions[$questionId]);
503 $sequencekey = array_search($sequence, $correctedsequence);
504 if ($sequencekey !==
false) {
505 return $sequencekey + 1;
518 $sequenceKeys = array();
520 foreach (array_keys($this->questions) as $sequenceKey) {
531 $sequenceKeys[] = $sequenceKey;
534 return $sequenceKeys;
541 foreach ($this->questions as $questionId) {
565 foreach ($seq as $sequence) {
573 $questionKey = array_search($questionId, $this->questions);
575 if ($questionKey ===
false) {
579 $sequenceKey = array_search($questionKey, $sequence);
581 if ($sequenceKey ===
false) {
585 unset($sequence[$sequenceKey]);
592 $correctedsequence = $this->sequencedata[
"sequence"];
594 if (is_array($this->sequencedata[
"hidden"])) {
595 foreach ($this->sequencedata[
"hidden"] as $question_id) {
601 foreach ($this->optionalQuestions as $questionId) {
605 if (is_array($this->sequencedata[
"postponed"])) {
606 foreach ($this->sequencedata[
"postponed"] as $question_id) {
607 $foundsequence = array_search($question_id, $this->questions);
608 if ($foundsequence !==
false) {
609 $sequencekey = array_search($foundsequence, $correctedsequence);
610 if ($sequencekey !==
false) {
611 unset($correctedsequence[$sequencekey]);
612 array_push($correctedsequence, $foundsequence);
617 return array_values($correctedsequence);
622 return array_search($question_id, $this->questions);
628 if (count($correctedsequence)) {
629 return reset($correctedsequence);
638 if (count($correctedsequence)) {
639 return end($correctedsequence);
648 $sequencekey = array_search($sequence, $correctedsequence);
649 if ($sequencekey !==
false) {
650 $nextsequencekey = $sequencekey + 1;
651 if (array_key_exists($nextsequencekey, $correctedsequence)) {
652 return $correctedsequence[$nextsequencekey];
661 $sequencekey = array_search($sequence, $correctedsequence);
662 if ($sequencekey !==
false) {
663 $prevsequencekey = $sequencekey - 1;
664 if (($prevsequencekey >= 0) && (array_key_exists($prevsequencekey, $correctedsequence))) {
665 return $correctedsequence[$prevsequencekey];
681 $keys = array_keys($array);
695 if (array_key_exists($sequence, $this->questions)) {
696 return $this->questions[$sequence];
705 $result_array = array();
706 include_once
"./Modules/Test/classes/class.ilObjTest.php";
709 foreach ($correctedsequence as $sequence) {
711 if (is_object($question)) {
712 $worked_through = $question->_isWorkedThrough($this->active_id, $question->getId(),
$this->pass);
714 if (array_key_exists($question->getId(), $solved_questions)) {
715 $solved = $solved_questions[$question->getId()][
"solved"];
721 "title" => $question->getTitle(),
722 "qid" => $question->getId(),
724 "visited" => $worked_through,
725 "solved" => (($solved) ?
"1" :
"0"),
726 "description" => $question->getComment(),
727 "points" => $question->getMaximumPoints(),
728 "worked_through" => $worked_through,
729 "postponed" => $is_postponed,
730 "sequence" => $sequence,
732 'isAnswered' => $question->isAnswered($this->active_id, $this->pass)
735 if (!$obligationsFilterEnabled || $row[
'obligatory']) {
736 array_push($result_array, $row);
742 return $result_array;
757 if ((is_array($this->sequencedata[
"sequence"])) && (count($this->sequencedata[
"sequence"]) > 0)) {
766 if ((is_array($this->sequencedata[
"hidden"])) && (count($this->sequencedata[
"hidden"]) > 0)) {
775 $this->sequencedata[
"hidden"] = array();
783 foreach ($result as $sequence => $question) {
784 if (is_numeric($sequence)) {
785 if ($question[
'reached'] == $question[
'max']) {
816 return array_values($this->questions);
821 return in_array($questionId, $this->questions);
826 $this->optionalQuestions[$questionId] = $questionId;
831 return isset($this->optionalQuestions[$questionId]);
836 return (
bool) count($this->optionalQuestions);
846 $this->optionalQuestions = array();
851 $optionalSequenceKeys = array();
853 foreach ($this->sequencedata[
'sequence'] as
$index => $sequenceKey) {
855 $optionalSequenceKeys[
$index] = $sequenceKey;
856 unset($this->sequencedata[
'sequence'][
$index]);
860 foreach ($optionalSequenceKeys as
$index => $sequenceKey) {
861 $this->sequencedata[
'sequence'][
$index] = $sequenceKey;
loadFromDb()
Loads the sequence data for a given active id.
isPostponedQuestion($question_id)
loadQuestions(ilTestQuestionSetConfig $testQuestionSetConfig=null, $taxonomyFilterSelection=array())
Loads the question mapping.
getNextSequence($sequence)
setConsiderHiddenQuestionsEnabled($considerHiddenQuestionsEnabled)
isConsiderOptionalQuestionsEnabled()
getSequenceForQuestion($question_id)
isQuestionChecked($questionId)
isQuestionOptional($questionId)
setAnsweringOptionalQuestionsConfirmed($answeringOptionalQuestionsConfirmed)
isQuestionPresented($questionId)
hideQuestion($question_id)
postponeQuestion($question_id)
getQuestionForSequence($sequence)
saveNewlyPresentedQuestion()
getUserSequenceQuestions()
getPositionOfSequence($sequence)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _instanciateQuestion($question_id)
Creates an instance of a question with a given question id.
static isQuestionObligatory($question_id)
checks wether the question with given id is marked as obligatory or not
saveToDb()
Saves the sequence data for a given pass to the database.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveOptionalQuestions()
ilDBInterface $ilDB
setConsiderOptionalQuestionsEnabled($considerOptionalQuestionsEnabled)
setQuestionPresented($questionId)
hasStarted(ilTestSession $testSession)
$answeringOptionalQuestionsConfirmed
isConsiderHiddenQuestionsEnabled()
postponeSequence($sequence)
static _getSolvedQuestions($active_id, $question_fi=null)
get solved questions
$considerHiddenQuestionsEnabled
getOrderedSequenceQuestions()
& getTestResult( $active_id, $pass=null, bool $ordered_sequence=false, bool $considerHiddenQuestions=true, bool $considerOptionalQuestions=true)
Calculates the results of a test for a given user and returns an array with all test results...
__construct($active_id, $pass, $randomtest)
ilTestSequence constructor
$alreadyPresentedQuestions
getPreviousSequence($sequence)
reorderOptionalQuestionsToSequenceEnd()
isHiddenQuestion($question_id)
createNewSequence($max, $shuffle)
setQuestionOptional($questionId)
isHiddenSequence($sequence)
isNextQuestionPresented($questionId)
questionExists($questionId)
saveNewlyCheckedQuestion()
ilDBInterface $ilDB
isPostponedSequence($sequence)
setQuestionChecked($questionId)
hideCorrectAnsweredQuestions(ilObjTest $testOBJ, $activeId, $pass)
isAnsweringOptionalQuestionsConfirmed()
ensureQuestionNotInSequence($sequence, $questionId)
getSequenceSummary($obligationsFilterEnabled=false)
pcArrayShuffle($array)
Shuffles the values of a given array.
$considerOptionalQuestionsEnabled