ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilTestSequenceRandomQuestionSet Class Reference
+ Inheritance diagram for ilTestSequenceRandomQuestionSet:
+ Collaboration diagram for ilTestSequenceRandomQuestionSet:

Public Member Functions

 loadQuestions ()
 
 hasRandomQuestionsForPass (int $active_id, int $pass)
 !!! LEGACY CODE !!! More...
 
 getResponsibleSourcePoolDefinitionId (int $question_id)
 
- Public Member Functions inherited from ilTestSequence
 __construct (protected ilDBInterface $db, protected int $active_id, protected int $pass, protected GeneralQuestionPropertiesRepository $questionrepository)
 ilTestSequence constructor More...
 
 getActiveId ()
 
 createNewSequence (int $max, bool $shuffle)
 
 loadQuestions ()
 Loads the question mapping. More...
 
 loadFromDb ()
 Loads the sequence data for a given active id. More...
 
 saveToDb ()
 Saves the sequence data for a given pass to the database. More...
 
 postponeQuestion (int $question_id)
 
 hideQuestion (int $question_id)
 
 isPostponedQuestion (int $question_id)
 
 isHiddenQuestion (int $question_id)
 
 isPostponedSequence (int $sequence)
 
 isHiddenSequence (int $sequence)
 
 postponeSequence (int $sequence)
 
 hideSequence (int $sequence)
 
 setQuestionPresented (int $question_id)
 
 isQuestionPresented (int $question_id)
 
 isNextQuestionPresented (int $question_id)
 
 setQuestionChecked (int $question_id)
 
 isQuestionChecked (int $question_id)
 
 getPositionOfSequence (int $sequence)
 
 getUserQuestionCount ()
 
 getOrderedSequence ()
 
 getOrderedSequenceQuestions ()
 
 getUserSequence ()
 
 getUserSequenceQuestions ()
 
 getSequenceForQuestion (int $question_id)
 
 getFirstSequence ()
 
 getLastSequence ()
 
 getNextSequence (int $sequence)
 
 getPreviousSequence (int $sequence)
 
 pcArrayShuffle (array $array)
 Shuffles the values of a given array. More...
 
 getQuestionForSequence (int $sequence)
 
 getSequenceSummary ()
 
 getPass ()
 
 setPass (int $pass)
 
 hasSequence ()
 
 hasHiddenQuestions ()
 
 clearHiddenQuestions ()
 
 hasStarted (ilTestSession $testSession)
 
 openQuestionExists ()
 
 getQuestionIds ()
 
 questionExists (int $question_id)
 
 setQuestionOptional (int $question_id)
 
 isQuestionOptional (int $question_id)
 
 hasOptionalQuestions ()
 
 getOptionalQuestions ()
 
 clearOptionalQuestions ()
 
 reorderOptionalQuestionsToSequenceEnd ()
 
 isAnsweringOptionalQuestionsConfirmed ()
 
 setAnsweringOptionalQuestionsConfirmed (bool $answeringOptionalQuestionsConfirmed)
 
 isConsiderHiddenQuestionsEnabled ()
 
 setConsiderHiddenQuestionsEnabled (bool $considerHiddenQuestionsEnabled)
 
 isConsiderOptionalQuestionsEnabled ()
 
 setConsiderOptionalQuestionsEnabled (bool $considerOptionalQuestionsEnabled)
 

Private Attributes

 $responsibleSourcePoolDefinitionByQuestion = []
 

Additional Inherited Members

- Data Fields inherited from ilTestSequence
array $sequencedata
 An array containing the sequence data. More...
 
array $questions
 The mapping of the sequence numbers to the questions. More...
 
- Protected Member Functions inherited from ilTestSequence
 loadPresentedQuestions ()
 
 saveNewlyPresentedQuestion ()
 
 getCorrectedSequence ()
 
- Protected Attributes inherited from ilTestSequence
array $alreadyPresentedQuestions = []
 
int $newlyPresentedQuestion = 0
 
array $alreadyCheckedQuestions = []
 
int $newlyCheckedQuestion = null
 
array $optionalQuestions = []
 

Detailed Description

Definition at line 27 of file class.ilTestSequenceRandomQuestionSet.php.

Member Function Documentation

◆ getResponsibleSourcePoolDefinitionId()

ilTestSequenceRandomQuestionSet::getResponsibleSourcePoolDefinitionId ( int  $question_id)

Implements ilTestRandomQuestionSequence.

Definition at line 81 of file class.ilTestSequenceRandomQuestionSet.php.

References null.

Referenced by ilLOTestQuestionAdapter\updateRandomQuestions().

81  : ?int
82  {
83  if (isset($this->responsibleSourcePoolDefinitionByQuestion[$question_id])) {
84  return $this->responsibleSourcePoolDefinitionByQuestion[$question_id];
85  }
86 
87  return null;
88  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the caller graph for this function:

◆ hasRandomQuestionsForPass()

ilTestSequenceRandomQuestionSet::hasRandomQuestionsForPass ( int  $active_id,
int  $pass 
)

!!! LEGACY CODE !!!

Checkes wheather a random test has already created questions for a given pass or not

private

Parameters
$active_idint Active id of the test
$passint Pass of the test
Returns
boolean TRUE if the test already contains questions, FALSE otherwise

Definition at line 71 of file class.ilTestSequenceRandomQuestionSet.php.

71  : bool
72  {
73  $result = $this->db->queryF(
74  "SELECT test_random_question_id FROM tst_test_rnd_qst WHERE active_fi = %s AND pass = %s",
75  ['integer','integer'],
76  [$active_id, $pass]
77  );
78  return ($result->numRows() > 0) ? true : false;
79  }

◆ loadQuestions()

ilTestSequenceRandomQuestionSet::loadQuestions ( )

Definition at line 31 of file class.ilTestSequenceRandomQuestionSet.php.

References $data.

31  : void
32  {
33  $this->questions = [];
34 
35  $result = $this->db->queryF(
36  "SELECT tst_test_rnd_qst.* FROM tst_test_rnd_qst, qpl_questions WHERE tst_test_rnd_qst.active_fi = %s AND qpl_questions.question_id = tst_test_rnd_qst.question_fi AND tst_test_rnd_qst.pass = %s ORDER BY sequence",
37  ['integer','integer'],
38  [$this->active_id, $this->pass]
39  );
40  // The following is a fix for random tests prior to ILIAS 3.8. If someone started a random test in ILIAS < 3.8, there
41  // is only one test pass (pass = 0) in tst_test_rnd_qst while with ILIAS 3.8 there are questions for every test pass.
42  // To prevent problems with tests started in an older version and continued in ILIAS 3.8, the first pass should be taken if
43  // no questions are present for a newer pass.
44  if ($result->numRows() == 0) {
45  $result = $this->db->queryF(
46  "SELECT tst_test_rnd_qst.* FROM tst_test_rnd_qst, qpl_questions WHERE tst_test_rnd_qst.active_fi = %s AND qpl_questions.question_id = tst_test_rnd_qst.question_fi AND tst_test_rnd_qst.pass = 0 ORDER BY sequence",
47  ['integer'],
48  [$this->active_id]
49  );
50  }
51 
52  $index = 1;
53 
54  while ($data = $this->db->fetchAssoc($result)) {
55  $this->questions[$index++] = $data["question_fi"];
56 
57  $this->responsibleSourcePoolDefinitionByQuestion[$data['question_fi']] = $data['src_pool_def_fi'];
58  }
59  }

Field Documentation

◆ $responsibleSourcePoolDefinitionByQuestion

ilTestSequenceRandomQuestionSet::$responsibleSourcePoolDefinitionByQuestion = []
private

Definition at line 29 of file class.ilTestSequenceRandomQuestionSet.php.


The documentation for this class was generated from the following file: