19 declare(strict_types=1);
30 private bool $anonymized =
false 47 $assessment_setting =
new ilSetting(
'assessment');
48 $user_criteria = $assessment_setting->get(
'user_criteria');
49 if ($user_criteria ===
null || $user_criteria ===
'') {
50 $user_criteria =
'usr_id';
53 if ($this->anonymized) {
54 $result = $this->db->queryF(
55 'SELECT * FROM tst_active WHERE test_fi = %s',
60 $result = $this->db->queryF(
61 'SELECT tst_active.*, usr_data.' . $user_criteria .
' FROM tst_active, usr_data WHERE tst_active.test_fi = %s AND tst_active.user_fi = usr_data.usr_id',
67 while ($row = $this->db->fetchAssoc($result)) {
69 'active_id' => $row[
'active_id'],
70 'user_fi' => $row[
'user_fi'] ??
'',
71 'anonymous_id' => $row[
'anonymous_id'] ??
'',
72 'test_fi' => $row[
'test_fi'],
73 'lastindex' => $row[
'lastindex'] ??
'',
74 'tries' => $row[
'tries'] ??
'',
75 'last_started_pass' => $row[
'last_started_pass'] ??
'',
76 'last_finished_pass' => $row[
'last_finished_pass'] ??
'',
77 'submitted' => $row[
'submitted'] ??
'',
78 'submittimestamp' => $row[
'submittimestamp'] ??
'',
79 'tstamp' => $row[
'tstamp'] ??
'' 82 if (!$this->anonymized) {
83 $attrs[
'user_criteria'] = $user_criteria;
84 $attrs[$user_criteria] = $row[$user_criteria];
86 array_push($this->active_ids, $row[
'active_id']);
94 $query =
'SELECT * FROM tst_pass_result WHERE ' . $this->db->in(
'active_fi', $this->active_ids,
false,
'integer') .
' ORDER BY active_fi, pass';
95 $result = $this->db->query($query);
97 while ($row = $this->db->fetchAssoc($result)) {
99 'active_fi' => $row[
'active_fi'],
100 'pass' => $row[
'pass'] ??
'',
101 'points' => $row[
'points'] ??
'',
102 'maxpoints' => $row[
'maxpoints'] ??
'',
103 'questioncount' => $row[
'questioncount'] ??
'',
104 'answeredquestions' => $row[
'answeredquestions'] ??
'',
105 'workingtime' => $row[
'workingtime'] ??
'',
106 'tstamp' => $row[
'tstamp'] ??
'' 115 $query =
'SELECT * FROM tst_result_cache WHERE ' . $this->db->in(
'active_fi', $this->active_ids,
false,
'integer') .
' ORDER BY active_fi';
116 $result = $this->db->query($query);
118 while ($row = $this->db->fetchAssoc($result)) {
120 'active_fi' => $row[
'active_fi'],
121 'pass' => $row[
'pass'],
122 'max_points' => $row[
'max_points'],
123 'reached_points' => $row[
'reached_points'],
124 'mark_short' => $row[
'mark_short'],
125 'mark_official' => $row[
'mark_official'],
126 'passed' => $row[
'passed'],
127 'failed' => $row[
'failed'],
128 'tstamp' => $row[
'tstamp']
137 $query =
'SELECT * FROM tst_sequence WHERE ' . $this->db->in(
'active_fi', $this->active_ids,
false,
'integer') .
' ORDER BY active_fi, pass';
138 $result = $this->db->query($query);
140 while ($row = $this->db->fetchAssoc($result)) {
142 'active_fi' => $row[
'active_fi'],
143 'pass' => $row[
'pass'] ??
'',
144 'sequence' => $row[
'sequence'] ??
'',
145 'postponed' => $row[
'postponed'] ??
'',
146 'hidden' => $row[
'hidden'] ??
'',
147 'tstamp' => $row[
'tstamp'] ??
'' 156 $query =
'SELECT * FROM tst_solutions WHERE ' . $this->db->in(
'active_fi', $this->active_ids,
false,
'integer') .
' ORDER BY solution_id';
157 $result = $this->db->query($query);
159 while ($row = $this->db->fetchAssoc($result)) {
161 'solution_id' => $row[
'solution_id'],
162 'active_fi' => $row[
'active_fi'],
163 'question_fi' => $row[
'question_fi'],
164 'points' => $row[
'points'] ??
'',
165 'pass' => $row[
'pass'] ??
'',
166 'value1' => $row[
'value1'] ??
'',
167 'value2' => $row[
'value2'] ??
'',
168 'tstamp' => $row[
'tstamp'] ??
'' 177 $result = $this->db->query(
" 178 SELECT * FROM tst_test_rnd_qst 179 WHERE {$this->db->in('active_fi', $this->active_ids, false, 'integer')} 180 ORDER BY test_random_question_id 184 while ($row = $this->db->fetchAssoc($result)) {
187 foreach ($row as $field => $value) {
188 $attrs[$field] = $value;
199 $query =
'SELECT * FROM tst_test_result WHERE ' . $this->db->in(
'active_fi', $this->active_ids,
false,
'integer') .
' ORDER BY active_fi';
200 $result = $this->db->query($query);
202 while ($row = $this->db->fetchAssoc($result)) {
204 'test_result_id' => $row[
'test_result_id'],
205 'active_fi' => $row[
'active_fi'],
206 'question_fi' => $row[
'question_fi'],
207 'points' => $row[
'points'] ??
'',
208 'pass' => $row[
'pass'] ??
'',
209 'manual' => $row[
'manual'] ??
'',
210 'tstamp' => $row[
'tstamp'] ??
'' 219 $query =
'SELECT * FROM tst_times WHERE ' . $this->db->in(
'active_fi', $this->active_ids,
false,
'integer') .
' ORDER BY active_fi';
220 $result = $this->db->query($query);
222 while ($row = $this->db->fetchAssoc($result)) {
224 'times_id' => $row[
'times_id'],
225 'active_fi' => $row[
'active_fi'],
226 'started' => $row[
'started'],
227 'finished' => $row[
'finished'],
228 'pass' => $row[
'pass'],
229 'tstamp' => $row[
'tstamp']
238 $this->active_ids = [];
240 $attrs = [
'version' =>
'4.1.0'];
260 return parent::xmlDumpMem($format);
263 public function xmlDumpFile(
string $file,
bool $format =
true): void
266 parent::xmlDumpFile($file, $format);
__construct(private int $test_id, private ilDBInterface $db, private bool $anonymized=false)
static _getParticipantData($active_id)
Retrieves a participant name from active id.
xmlDumpFile(string $file, bool $format=true)
xmlDumpMem(bool $format=true)
isIncludeRandomTestQuestionsEnabled()
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
bool $include_random_test_questions_enabled
setIncludeRandomTestQuestionsEnabled(bool $include_random_test_questions_enabled)
xmlHeader()
Writes xml header.
__construct(Container $dic, ilPlugin $plugin)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
exportRandomTestQuestions()