19 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
20 require_once
'Modules/TestQuestionPool/classes/class.assQuestion.php';
75 $this->test_obj = &$a_test_obj;
80 $this->mode = $a_mode;
86 $this->export_dir = $this->test_obj->getExportDirectory();
88 switch ($this->mode) {
90 $this->subdir = $date .
"__" . $this->inst_id .
"__" .
91 "tst__results_" . $this->test_obj->getId();
94 $this->subdir = $date .
"__" . $this->inst_id .
"__" .
95 "test__aggregated__results_" . $this->test_obj->getId();
98 $this->subdir = $date .
"__" . $this->inst_id .
"__" .
99 "tst" .
"_" . $this->test_obj->getId();
100 $this->filename = $this->subdir .
".xml";
101 $this->resultsfile = $date .
"__" . $this->inst_id .
"__" .
102 "results" .
"_" . $this->test_obj->getId() .
".xml";
103 $this->qti_filename = $date .
"__" . $this->inst_id .
"__" .
104 "qti" .
"_" . $this->test_obj->getId() .
".xml";
107 $this->filename = $this->subdir .
"." . $this->
getExtension();
123 $this->resultExportingEnabledForTestExport = $resultExprtingEnabledForTestExport;
151 return $this->test_obj->buildStatisticsAccessFilteredParticipantList();
156 switch ($this->mode) {
178 switch ($this->mode) {
194 $ilBench = $DIC[
'ilBench'];
198 $expDir = $this->test_obj->getExportDirectory();
201 $this->test_obj->createExportDirectory();
202 include_once
"./Services/Utilities/classes/class.ilUtil.php";
205 include_once
'./Services/Logging/classes/class.ilLog.php';
206 $expLog =
new ilLog($expDir,
"export.log");
208 $expLog->setLogFormat(
"");
209 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Start Export Of Results");
212 $file = fopen($this->export_dir .
"/" . $this->filename,
"w");
213 fwrite($file,
$data);
217 @copy($excelfile, $this->export_dir .
"/" . str_replace($this->
getExtension(),
"xlsx", $this->filename));
220 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Finished Export of Results");
231 $data = $this->test_obj->getAggregatedResultsData();
233 require_once
'Modules/TestQuestionPool/classes/class.ilAssExcelFormatHelper.php';
235 $worksheet->addSheet($this->
lng->txt(
'tst_results_aggregated'));
239 $worksheet->setCell($row, $col++, $this->
lng->txt(
'result'));
240 $worksheet->setCell($row, $col++, $this->
lng->txt(
'value'));
242 $worksheet->setBold(
'A' . $row .
':' . $worksheet->getColumnCoord($col - 1) . $row);
245 foreach (
$data[
'overview'] as
$key => $value) {
247 $worksheet->setCell($row, $col++,
$key);
248 $worksheet->setCell($row, $col++, $value);
255 $worksheet->setCell($row, $col++, $this->
lng->txt(
'question_id'));
256 $worksheet->setCell($row, $col++, $this->
lng->txt(
'question_title'));
257 $worksheet->setCell($row, $col++, $this->
lng->txt(
'average_reached_points'));
258 $worksheet->setCell($row, $col++, $this->
lng->txt(
'points'));
259 $worksheet->setCell($row, $col++, $this->
lng->txt(
'percentage'));
260 $worksheet->setCell($row, $col++, $this->
lng->txt(
'number_of_answers'));
262 $worksheet->setBold(
'A' . $row .
':' . $worksheet->getColumnCoord($col - 1) . $row);
265 foreach (
$data[
'questions'] as
$key => $value) {
267 $worksheet->setCell($row, $col++,
$key);
268 $worksheet->setCell($row, $col++, $value[0]);
269 $worksheet->setCell($row, $col++, $value[4]);
270 $worksheet->setCell($row, $col++, $value[5]);
271 $worksheet->setCell($row, $col++, $value[6]);
272 $worksheet->setCell($row, $col++, $value[3]);
277 $worksheet->sendToClient(
282 $worksheet->writeToFile($excelfile);
283 return $excelfile .
'.xlsx';
293 $data = $this->test_obj->getAggregatedResultsData();
295 array_push(
$rows, array(
296 $this->
lng->txt(
"result"),
297 $this->
lng->txt(
"value")
299 foreach (
$data[
"overview"] as
$key => $value) {
300 array_push(
$rows, array(
305 array_push(
$rows, array(
306 $this->
lng->txt(
"question_id"),
307 $this->
lng->txt(
"question_title"),
308 $this->
lng->txt(
"average_reached_points"),
309 $this->
lng->txt(
"points"),
310 $this->
lng->txt(
"percentage"),
311 $this->
lng->txt(
"number_of_answers")
313 foreach (
$data[
"questions"] as
$key => $value) {
314 array_push(
$rows, array(
325 foreach (
$rows as $evalrow) {
326 $csvrow = &$this->test_obj->processCSVRow($evalrow,
true, $separator);
327 $csv .= join($separator, $csvrow) .
"\n";
345 public function exportToExcel($deliver =
true, $filterby =
"", $filtertext =
"", $passedonly =
false)
349 if (strcmp($this->mode,
"aggregated") == 0) {
353 require_once
'Modules/TestQuestionPool/classes/class.ilAssExcelFormatHelper.php';
356 $worksheet->addSheet($this->
lng->txt(
'tst_results'));
358 $additionalFields = $this->test_obj->getEvaluationAdditionalFields();
363 if ($this->test_obj->getAnonymity()) {
364 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'counter'));
366 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'name'));
367 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'login'));
370 if (count($additionalFields)) {
371 foreach ($additionalFields as $fieldname) {
372 if (strcmp($fieldname,
"exam_id") == 0) {
373 $worksheet->setFormattedExcelTitle(
374 $worksheet->getColumnCoord($col++) . $row,
375 $this->
lng->txt(
'exam_id_label')
379 $worksheet->setFormattedExcelTitle(
380 $worksheet->getColumnCoord($col++) . $row,
381 $this->
lng->txt($fieldname)
386 $worksheet->setFormattedExcelTitle(
387 $worksheet->getColumnCoord($col++) . $row,
388 $this->
lng->txt(
'tst_stat_result_resultspoints')
390 $worksheet->setFormattedExcelTitle(
391 $worksheet->getColumnCoord($col++) . $row,
392 $this->
lng->txt(
'maximum_points')
394 $worksheet->setFormattedExcelTitle(
395 $worksheet->getColumnCoord($col++) . $row,
396 $this->
lng->txt(
'tst_stat_result_resultsmarks')
399 if ($this->test_obj->getECTSOutput()) {
400 $worksheet->setFormattedExcelTitle(
401 $worksheet->getColumnCoord($col++) . $row,
402 $this->
lng->txt(
'ects_grade')
406 $worksheet->setFormattedExcelTitle(
407 $worksheet->getColumnCoord($col++) . $row,
408 $this->
lng->txt(
'tst_stat_result_qworkedthrough')
410 $worksheet->setFormattedExcelTitle(
411 $worksheet->getColumnCoord($col++) . $row,
412 $this->
lng->txt(
'tst_stat_result_qmax')
414 $worksheet->setFormattedExcelTitle(
415 $worksheet->getColumnCoord($col++) . $row,
416 $this->
lng->txt(
'tst_stat_result_pworkedthrough')
418 $worksheet->setFormattedExcelTitle(
419 $worksheet->getColumnCoord($col++) . $row,
420 $this->
lng->txt(
'tst_stat_result_timeofwork')
422 $worksheet->setFormattedExcelTitle(
423 $worksheet->getColumnCoord($col++) . $row,
424 $this->
lng->txt(
'tst_stat_result_atimeofwork')
426 $worksheet->setFormattedExcelTitle(
427 $worksheet->getColumnCoord($col++) . $row,
428 $this->
lng->txt(
'tst_stat_result_firstvisit')
430 $worksheet->setFormattedExcelTitle(
431 $worksheet->getColumnCoord($col++) . $row,
432 $this->
lng->txt(
'tst_stat_result_lastvisit')
434 $worksheet->setFormattedExcelTitle(
435 $worksheet->getColumnCoord($col++) . $row,
436 $this->
lng->txt(
'tst_stat_result_mark_median')
438 $worksheet->setFormattedExcelTitle(
439 $worksheet->getColumnCoord($col++) . $row,
440 $this->
lng->txt(
'tst_stat_result_rank_participant')
442 $worksheet->setFormattedExcelTitle(
443 $worksheet->getColumnCoord($col++) . $row,
444 $this->
lng->txt(
'tst_stat_result_rank_median')
446 $worksheet->setFormattedExcelTitle(
447 $worksheet->getColumnCoord($col++) . $row,
448 $this->
lng->txt(
'tst_stat_result_total_participants')
450 $worksheet->setFormattedExcelTitle(
451 $worksheet->getColumnCoord($col++) . $row,
452 $this->
lng->txt(
'tst_stat_result_median')
454 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'tst_tbl_col_started_passes'));
455 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'tst_tbl_col_finished_passes'));
456 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'tst_tbl_col_started_passes'));
457 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'tst_tbl_col_finished_passes'));
458 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'scored_pass'));
459 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'pass'));
461 $worksheet->setBold(
'A' . $row .
':' . $worksheet->getColumnCoord($col - 1) . $row);
464 $data = $this->test_obj->getCompleteEvaluationData(
true, $filterby, $filtertext);
465 $firstrowwritten =
false;
466 foreach (
$data->getParticipants() as $active_id => $userdata) {
467 if ($passedonly &&
$data->getParticipant($active_id)->getPassed() ==
false) {
475 if ($this->test_obj->isRandomTest() && $firstrowwritten) {
479 if ($this->test_obj->getAnonymity()) {
480 $worksheet->setCell($row, $col++, $counter);
482 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getName());
483 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getLogin());
486 if (count($additionalFields)) {
488 foreach ($additionalFields as $fieldname) {
489 if (strcmp($fieldname,
'gender') == 0) {
490 $worksheet->setCell($row, $col++, strlen($userfields[$fieldname]) ? $this->
lng->txt(
'gender_' . $userfields[$fieldname]) :
'');
491 } elseif (strcmp($fieldname,
"exam_id") == 0) {
492 $worksheet->setCell($row, $col++, $userdata->getExamIdFromScoredPass());
494 $worksheet->setCell($row, $col++, $userfields[$fieldname]);
499 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getReached());
500 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getMaxpoints());
501 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getMark());
503 if ($this->test_obj->getECTSOutput()) {
504 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getECTSMark());
507 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getQuestionsWorkedThrough());
508 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getNumberOfQuestions());
512 $data->getParticipant($active_id)->getQuestionsWorkedThroughInPercent() .
'%' 515 $time =
$data->getParticipant($active_id)->getTimeOfWork();
516 $time_seconds = $time;
517 $time_hours = floor($time_seconds / 3600);
518 $time_seconds -= $time_hours * 3600;
519 $time_minutes = floor($time_seconds / 60);
520 $time_seconds -= $time_minutes * 60;
521 $worksheet->setCell($row, $col++, sprintf(
"%02d:%02d:%02d", $time_hours, $time_minutes, $time_seconds));
522 $time =
$data->getParticipant($active_id)->getQuestionsWorkedThrough() ?
$data->getParticipant($active_id)->getTimeOfWork() /
$data->getParticipant($active_id)->getQuestionsWorkedThrough() : 0;
523 $time_seconds = $time;
524 $time_hours = floor($time_seconds / 3600);
525 $time_seconds -= $time_hours * 3600;
526 $time_minutes = floor($time_seconds / 60);
527 $time_seconds -= $time_minutes * 60;
528 $worksheet->setCell($row, $col++, sprintf(
"%02d:%02d:%02d", $time_hours, $time_minutes, $time_seconds));
540 $median =
$data->getStatistics()->getStatistics()->median();
541 $pct =
$data->getParticipant($active_id)->getMaxpoints() ? $median /
$data->getParticipant($active_id)->getMaxpoints() * 100.0 : 0;
542 $mark = $this->test_obj->mark_schema->getMatchingMark($pct);
543 $mark_short_name =
"";
545 if (is_object($mark)) {
546 $mark_short_name = $mark->getShortName();
549 $worksheet->setCell($row, $col++, $mark_short_name);
553 $data->getStatistics()->getStatistics()->rank(
$data->getParticipant($active_id)->getReached())
555 $worksheet->setCell($row, $col++,
$data->getStatistics()->getStatistics()->rank_median());
556 $worksheet->setCell($row, $col++,
$data->getStatistics()->getStatistics()->count());
557 $worksheet->setCell($row, $col++, $median);
558 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getPassCount());
559 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getFinishedPasses());
561 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getBestPass() + 1);
563 $worksheet->setCell($row, $col++,
$data->getParticipant($active_id)->getLastPass() + 1);
568 for ($pass = 0; $pass <=
$data->getParticipant($active_id)->getLastPass(); $pass++) {
571 if ($finishdate > 0) {
574 if ($this->test_obj->isRandomTest()) {
578 $worksheet->setCell($row, $col++, $pass + 1);
579 if (is_object(
$data->getParticipant($active_id)) && is_array(
$data->getParticipant($active_id)->getQuestions($pass))) {
580 $evaluated_questions =
$data->getParticipant($active_id)->getQuestions($pass);
583 foreach ($questions as $question) {
584 $question_data =
$data->getParticipant($active_id)->getPass($pass)->getAnsweredQuestionByQuestionId($question[
"id"]);
585 if (is_null($question_data)) {
586 $question_data = [
'reached' => 0];
588 $worksheet->setCell($row, $col, $question_data[
"reached"]);
589 if ($this->test_obj->isRandomTest()) {
592 $worksheet->setFormattedExcelTitle(
593 $worksheet->getColumnCoord($col) . ($row - 1),
594 preg_replace(
"/<.*?>/",
"",
$data->getQuestionTitle($question[
"id"]))
597 if ($pass == 0 && !$firstrowwritten) {
598 $worksheet->setFormattedExcelTitle(
599 $worksheet->getColumnCoord($col) . 1,
600 $data->getQuestionTitle($question[
"id"])
606 $firstrowwritten =
true;
613 if ($this->test_obj->getExportSettingsSingleChoiceShort() && !$this->test_obj->isRandomTest() && $this->test_obj->hasSingleChoiceQuestions()) {
615 $titles = $this->test_obj->getQuestionTitlesAndIndexes();
616 $positions = array();
619 foreach ($titles as
$id => $title) {
620 $positions[
$id] = $pos;
624 $usernames = array();
625 $participantcount = count(
$data->getParticipants());
626 $allusersheet =
false;
629 $worksheet->addSheet($this->
lng->txt(
'eval_all_users'));
632 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'name'));
633 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'login'));
634 if (count($additionalFields)) {
635 foreach ($additionalFields as $fieldname) {
636 if (strcmp($fieldname,
"matriculation") == 0) {
637 $worksheet->setFormattedExcelTitle(
638 $worksheet->getColumnCoord($col++) . $row,
639 $this->
lng->txt(
'matriculation')
642 if (strcmp($fieldname,
"exam_id") == 0) {
643 $worksheet->setFormattedExcelTitle(
644 $worksheet->getColumnCoord($col++) . $row,
645 $this->
lng->txt(
'exam_id_label')
650 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'test'));
651 foreach ($titles as $title) {
652 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $title);
654 $worksheet->setBold(
'A' . $row .
':' . $worksheet->getColumnCoord($col - 1) . $row);
657 foreach (
$data->getParticipants() as $active_id => $userdata) {
658 $username = (!is_null($userdata) && $userdata->getName()) ? $userdata->getName() :
"ID $active_id";
659 if (array_key_exists($username, $usernames)) {
660 $usernames[$username]++;
661 $username .=
" ($usernames[$username])";
663 $usernames[$username] = 1;
666 $worksheet->setCell($row, $col++, $username);
667 $worksheet->setCell($row, $col++, $userdata->getLogin());
668 if (count($additionalFields)) {
670 foreach ($additionalFields as $fieldname) {
671 if (strcmp($fieldname,
"matriculation") == 0) {
672 if (strlen($userfields[$fieldname])) {
673 $worksheet->setCell($row, $col++, $userfields[$fieldname]);
678 if (strcmp($fieldname,
"exam_id") == 0) {
679 if (strlen($userfields[$fieldname])) {
680 $worksheet->setCell($row, $col++, $userdata->getExamIdFromScoredPass());
687 $worksheet->setCell($row, $col++, $this->test_obj->getTitle());
688 $pass = $userdata->getScoredPass();
689 if (is_object($userdata) && is_array($userdata->getQuestions($pass))) {
690 foreach ($userdata->getQuestions($pass) as $question) {
692 if (is_object($objQuestion) && strcmp(
693 $objQuestion->getQuestionType(),
696 $solution = $objQuestion->getSolutionValues($active_id, $pass);
697 $pos = $positions[$question[
"id"]];
698 $selectedanswer =
"x";
699 foreach ($objQuestion->getAnswers() as
$id => $answer) {
700 if (strlen($solution[0][
"value1"]) && $id == $solution[0][
"value1"]) {
701 $selectedanswer = $answer->getAnswertext();
704 $worksheet->setCell($row, $col + $pos, $selectedanswer);
711 if ($this->test_obj->isSingleChoiceTestWithoutShuffle()) {
715 $usernames = array();
716 $allusersheet =
false;
719 $worksheet->addSheet($this->
lng->txt(
'eval_all_users') .
' (2)');
722 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'name'));
723 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'login'));
724 if (count($additionalFields)) {
725 foreach ($additionalFields as $fieldname) {
726 if (strcmp($fieldname,
"matriculation") == 0) {
727 $worksheet->setFormattedExcelTitle(
728 $worksheet->getColumnCoord($col++) . $row,
729 $this->
lng->txt(
'matriculation')
732 if (strcmp($fieldname,
"exam_id") == 0) {
733 $worksheet->setFormattedExcelTitle(
734 $worksheet->getColumnCoord($col++) . $row,
735 $this->
lng->txt(
'exam_id_label')
740 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
'test'));
741 foreach ($titles as $title) {
742 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $title);
744 $worksheet->setBold(
'A' . $row .
':' . $worksheet->getColumnCoord($col - 1) . $row);
747 foreach (
$data->getParticipants() as $active_id => $userdata) {
748 $username = (!is_null($userdata) && $userdata->getName()) ? $userdata->getName() :
"ID $active_id";
749 if (array_key_exists($username, $usernames)) {
750 $usernames[$username]++;
751 $username .=
" ($usernames[$username])";
753 $usernames[$username] = 1;
756 $worksheet->setCell($row, $col++, $username);
757 $worksheet->setCell($row, $col++, $userdata->getLogin());
758 if (count($additionalFields)) {
760 foreach ($additionalFields as $fieldname) {
761 if (strcmp($fieldname,
"matriculation") == 0) {
762 if (strlen($userfields[$fieldname])) {
763 $worksheet->setCell($row, $col++, $userfields[$fieldname]);
768 if (strcmp($fieldname,
"exam_id") == 0) {
769 if (strlen($userfields[$fieldname])) {
770 $worksheet->setCell($row, $col++, $userdata->getExamIdFromScoredPass());
777 $worksheet->setCell($row, $col++, $this->test_obj->getTitle());
778 $pass = $userdata->getScoredPass();
779 if (is_object($userdata) && is_array($userdata->getQuestions($pass))) {
780 foreach ($userdata->getQuestions($pass) as $question) {
782 if (is_object($objQuestion) && strcmp(
783 $objQuestion->getQuestionType(),
786 $solution = $objQuestion->getSolutionValues($active_id, $pass);
787 $pos = $positions[$question[
"aid"]];
788 $selectedanswer = chr(65 + $solution[0][
"value1"]);
789 $worksheet->setCell($row, $col + $pos, $selectedanswer);
798 $usernames = array();
799 $participantcount = count(
$data->getParticipants());
800 $allusersheet =
false;
802 foreach (
$data->getParticipants() as $active_id => $userdata) {
803 $username = (!is_null($userdata) && $userdata->getName())
804 ? $userdata->getName()
806 $username = mb_substr($username, 0, 26);
807 $username_to_lower = strtolower($username);
808 if (array_key_exists($username_to_lower, $usernames)) {
809 $usernames[$username_to_lower]++;
810 $username .=
" (" . $usernames[$username_to_lower] .
")";
812 $usernames[$username_to_lower] = 0;
815 if ($participantcount > 250) {
816 if (!$allusersheet || ($pages - 1) < floor($row / 64000)) {
817 $worksheet->addSheet($this->
lng->txt(
"eval_all_users") . (($pages > 0) ?
" (" . ($pages + 1) .
")" :
""));
818 $allusersheet =
true;
823 $resultsheet = $worksheet->addSheet($username);
826 $pass = $userdata->getScoredPass();
827 $row = ($allusersheet) ? $row : 1;
831 sprintf($this->
lng->txt(
"tst_result_user_name_pass"), $pass + 1, $userdata->getName())
833 $worksheet->setBold($worksheet->getColumnCoord(0) . $row);
835 if (is_object($userdata) && is_array($userdata->getQuestions($pass))) {
836 foreach ($userdata->getQuestions($pass) as $question) {
837 require_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
839 if (is_object($question)) {
840 $row = $question->setExportDetailsXLS($worksheet, $row, $active_id, $pass);
848 $testname = $this->test_obj->getTitle();
849 switch ($this->mode) {
851 $testname .=
'_results';
855 $worksheet->sendToClient($testname);
858 $worksheet->writeToFile($excelfile);
859 return $excelfile .
'.xlsx';
873 public function exportToCSV($deliver =
true, $filterby =
"", $filtertext =
"", $passedonly =
false)
875 $this->test_obj->setAccessFilteredParticipantList(
876 $this->test_obj->buildStatisticsAccessFilteredParticipantList()
879 if (strcmp($this->mode,
"aggregated") == 0) {
886 if ($this->test_obj->getAnonymity()) {
887 array_push($datarow, $this->
lng->txt(
"counter"));
890 array_push($datarow, $this->
lng->txt(
"name"));
892 array_push($datarow, $this->
lng->txt(
"login"));
895 $additionalFields = $this->test_obj->getEvaluationAdditionalFields();
896 if (count($additionalFields)) {
897 foreach ($additionalFields as $fieldname) {
898 if (strcmp($fieldname,
"exam_id") == 0) {
899 array_push($datarow, $this->
lng->txt(
'exam_id_label'));
903 array_push($datarow, $this->
lng->txt($fieldname));
907 array_push($datarow, $this->
lng->txt(
"tst_stat_result_resultspoints"));
909 array_push($datarow, $this->
lng->txt(
"maximum_points"));
911 array_push($datarow, $this->
lng->txt(
"tst_stat_result_resultsmarks"));
913 if ($this->test_obj->getECTSOutput()) {
914 array_push($datarow, $this->
lng->txt(
"ects_grade"));
917 array_push($datarow, $this->
lng->txt(
"tst_stat_result_qworkedthrough"));
919 array_push($datarow, $this->
lng->txt(
"tst_stat_result_qmax"));
921 array_push($datarow, $this->
lng->txt(
"tst_stat_result_pworkedthrough"));
923 array_push($datarow, $this->
lng->txt(
"tst_stat_result_timeofwork"));
925 array_push($datarow, $this->
lng->txt(
"tst_stat_result_atimeofwork"));
927 array_push($datarow, $this->
lng->txt(
"tst_stat_result_firstvisit"));
929 array_push($datarow, $this->
lng->txt(
"tst_stat_result_lastvisit"));
932 array_push($datarow, $this->
lng->txt(
"tst_stat_result_mark_median"));
934 array_push($datarow, $this->
lng->txt(
"tst_stat_result_rank_participant"));
936 array_push($datarow, $this->
lng->txt(
"tst_stat_result_rank_median"));
938 array_push($datarow, $this->
lng->txt(
"tst_stat_result_total_participants"));
940 array_push($datarow, $this->
lng->txt(
"tst_stat_result_median"));
942 array_push($datarow, $this->
lng->txt(
"tst_tbl_col_started_passes"));
944 array_push($datarow, $this->
lng->txt(
"tst_tbl_col_finished_passes"));
947 array_push($datarow, $this->
lng->txt(
"scored_pass"));
950 array_push($datarow, $this->
lng->txt(
"pass"));
953 $data = &$this->test_obj->getCompleteEvaluationData(
true, $filterby, $filtertext);
954 $headerrow = $datarow;
956 foreach (
$data->getParticipants() as $active_id => $userdata) {
957 $datarow = $headerrow;
960 if (
$data->getParticipant($active_id)->getPassed() ==
false) {
966 if ($this->test_obj->getAnonymity()) {
967 array_push($datarow2, $counter);
969 array_push($datarow2,
$data->getParticipant($active_id)->getName());
970 array_push($datarow2,
$data->getParticipant($active_id)->getLogin());
972 if (count($additionalFields)) {
974 foreach ($additionalFields as $fieldname) {
975 if (strcmp($fieldname,
"gender") == 0) {
976 array_push($datarow2, strlen($userfields[$fieldname]) ? $this->
lng->txt(
'gender_' . $userfields[$fieldname]) :
'');
977 } elseif (strcmp($fieldname,
"exam_id") == 0) {
978 array_push($datarow2, $userdata->getExamIdFromScoredPass());
980 array_push($datarow2, $userfields[$fieldname]);
984 array_push($datarow2,
$data->getParticipant($active_id)->getReached());
985 array_push($datarow2,
$data->getParticipant($active_id)->getMaxpoints());
986 array_push($datarow2,
$data->getParticipant($active_id)->getMark());
987 if ($this->test_obj->getECTSOutput()) {
988 array_push($datarow2,
$data->getParticipant($active_id)->getECTSMark());
990 array_push($datarow2,
$data->getParticipant($active_id)->getQuestionsWorkedThrough());
991 array_push($datarow2,
$data->getParticipant($active_id)->getNumberOfQuestions());
992 array_push($datarow2,
$data->getParticipant($active_id)->getQuestionsWorkedThroughInPercent() / 100.0);
993 $time =
$data->getParticipant($active_id)->getTimeOfWork();
994 $time_seconds = $time;
995 $time_hours = floor($time_seconds / 3600);
996 $time_seconds -= $time_hours * 3600;
997 $time_minutes = floor($time_seconds / 60);
998 $time_seconds -= $time_minutes * 60;
999 array_push($datarow2, sprintf(
"%02d:%02d:%02d", $time_hours, $time_minutes, $time_seconds));
1000 $time =
$data->getParticipant($active_id)->getQuestionsWorkedThrough() ?
$data->getParticipant($active_id)->getTimeOfWork() /
$data->getParticipant($active_id)->getQuestionsWorkedThrough() : 0;
1001 $time_seconds = $time;
1002 $time_hours = floor($time_seconds / 3600);
1003 $time_seconds -= $time_hours * 3600;
1004 $time_minutes = floor($time_seconds / 60);
1005 $time_seconds -= $time_minutes * 60;
1006 array_push($datarow2, sprintf(
"%02d:%02d:%02d", $time_hours, $time_minutes, $time_seconds));
1008 $fv =
$data->getParticipant($active_id)->getFirstVisit();
1009 $lv =
$data->getParticipant($active_id)->getLastVisit();
1010 foreach (array($fv, $lv) as $ts) {
1013 array_push($datarow2, $visit);
1015 array_push($datarow2,
"");
1019 $median =
$data->getStatistics()->getStatistics()->median();
1020 $pct =
$data->getParticipant($active_id)->getMaxpoints() ? $median /
$data->getParticipant($active_id)->getMaxpoints() * 100.0 : 0;
1021 $mark = $this->test_obj->mark_schema->getMatchingMark($pct);
1022 $mark_short_name =
"";
1023 if (is_object($mark)) {
1024 $mark_short_name = $mark->getShortName();
1026 array_push($datarow2, $mark_short_name);
1027 array_push($datarow2,
$data->getStatistics()->getStatistics()->rank(
$data->getParticipant($active_id)->getReached()));
1028 array_push($datarow2,
$data->getStatistics()->getStatistics()->rank_median());
1029 array_push($datarow2,
$data->getStatistics()->getStatistics()->count());
1030 array_push($datarow2, $median);
1032 array_push($datarow2,
$data->getParticipant($active_id)->getPassCount());
1033 array_push($datarow2,
$data->getParticipant($active_id)->getFinishedPasses());
1035 array_push($datarow2,
$data->getParticipant($active_id)->getBestPass() + 1);
1037 array_push($datarow2,
$data->getParticipant($active_id)->getLastPass() + 1);
1039 for ($pass = 0; $pass <=
$data->getParticipant($active_id)->getLastPass(); $pass++) {
1041 if ($finishdate > 0) {
1043 for (
$i = 1;
$i < $col - 1;
$i++) {
1044 array_push($datarow2,
"");
1045 array_push($datarow,
"");
1047 array_push($datarow,
"");
1049 array_push($datarow2, $pass + 1);
1050 if (is_object(
$data->getParticipant($active_id)) && is_array($evaluated_questions =
$data->getParticipant($active_id)->getQuestions($pass))) {
1052 foreach ($questions as $question) {
1053 $question_data =
$data->getParticipant($active_id)->getPass($pass)->getAnsweredQuestionByQuestionId($question[
"id"]);
1054 if (is_null($question_data)) {
1055 $question_data = [
'reached' => 0];
1057 array_push($datarow2, $question_data[
"reached"]);
1058 array_push($datarow, preg_replace(
"/<.*?>/",
"",
$data->getQuestionTitle($question[
"id"])));
1061 if ($this->test_obj->isRandomTest() ||
1062 $counter == 1 && $pass == 0) {
1063 array_push(
$rows, $datarow);
1066 array_push(
$rows, $datarow2);
1067 $datarow2 = array();
1075 foreach (
$rows as $evalrow) {
1076 $csvrow = &$this->test_obj->processCSVRow($evalrow,
true, $separator);
1077 $csv .= join($separator, $csvrow) .
"\n";
1090 $key = $this->test_obj->isRandomTest() ?
'qid' :
'sequence';
1094 if (isset(
$a[
$key],
$b[$key]) &&
$a[$key] >
$b[$key]) {
1113 $ilBench = $DIC[
'ilBench'];
1115 $ilBench->start(
"TestExport",
"buildExportFile");
1119 include_once(
"./Services/Xml/classes/class.ilXmlWriter.php");
1123 $this->xml->xmlSetDtdDef(
"<!DOCTYPE Test SYSTEM \"http://www.ilias.uni-koeln.de/download/dtd/ilias_co.dtd\">");
1126 $this->xml->xmlSetGenCmt(
"Export of ILIAS Test " .
1127 $this->test_obj->getId() .
" of installation " . $this->inst_id .
".");
1130 $this->xml->xmlHeader();
1132 $this->xml->xmlStartTag(
"ContentObject", array(
'Type' =>
'Test'));
1135 $this->test_obj->createExportDirectory();
1136 include_once
"./Services/Utilities/classes/class.ilUtil.php";
1141 $expDir = $this->test_obj->getExportDirectory();
1142 include_once
"./Services/Logging/classes/class.ilLog.php";
1143 $expLog =
new ilLog($expDir,
"export.log");
1145 $expLog->setLogFormat(
"");
1146 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Start Export");
1149 $qti_file = fopen($this->export_dir .
"/" . $this->subdir .
"/" . $this->qti_filename,
"w");
1154 $ilBench->start(
"TestExport",
"buildExportFile_getXML");
1155 $this->test_obj->exportPagesXML(
1158 $this->export_dir .
"/" . $this->subdir,
1161 $ilBench->stop(
"TestExport",
"buildExportFile_getXML");
1169 $this->xml->xmlEndTag(
"ContentObject");
1179 $ilBench->start(
"TestExport",
"buildExportFile_dumpToFile");
1180 $this->xml->xmlDumpFile($this->export_dir .
"/" . $this->subdir .
"/" . $this->filename,
false);
1181 $ilBench->stop(
"TestExport",
"buildExportFile_dumpToFile");
1185 include_once
"./Modules/Test/classes/class.ilTestResultsToXML.php";
1186 $resultwriter =
new ilTestResultsToXML($this->test_obj->getTestId(), $this->test_obj->getAnonymity());
1188 $ilBench->start(
"TestExport",
"buildExportFile_results");
1189 $resultwriter->xmlDumpFile($this->export_dir .
"/" . $this->subdir .
"/" . $this->resultsfile,
false);
1190 $ilBench->stop(
"TestExport",
"buildExportFile_results");
1194 $ilBench->start(
"QuestionpoolExport",
"buildExportFile_saveAdditionalMobs");
1196 $ilBench->stop(
"QuestionpoolExport",
"buildExportFile_saveAdditionalMobs");
1199 $ilBench->start(
"TestExport",
"buildExportFile_zipFile");
1201 $this->export_dir .
"/" . $this->subdir,
1202 $this->export_dir .
"/" . $this->subdir .
".zip" 1204 $ilBench->stop(
"TestExport",
"buildExportFile_zipFile");
1209 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Finished Export");
1210 $ilBench->stop(
"TestExport",
"buildExportFile");
1212 return $this->export_dir .
"/" . $this->subdir .
".zip";
1219 $tstQtiXml = $this->test_obj->toXML();
1222 if (strpos($tstQtiXml,
"</section>") !==
false) {
1223 $qtiXml = str_replace(
"</section>",
"$qstQtiXml</section>", $tstQtiXml);
1225 $qtiXml = str_replace(
"<section ident=\"1\"/>",
"<section ident=\"1\">\n$qstQtiXml</section>", $tstQtiXml);
1235 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
1237 $xml = $questionOBJ->toXML(
false);
1240 $xml = preg_replace(
"/<questestinterop>/",
"",
$xml);
1241 $xml = preg_replace(
"/<\/questestinterop>/",
"",
$xml);
1248 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
1251 foreach (
$mobs as $mob) {
1254 $mob_obj->exportFiles($a_export_dir);
1260 foreach (
$mobs as $mob) {
1263 $mob_obj->exportFiles($a_export_dir);
1277 require_once
'Modules/TestQuestionPool/classes/questions/class.ilAssQuestionSkillAssignmentExporter.php';
1279 $skillQuestionAssignmentExporter->setXmlWriter($a_xml_writer);
1280 $skillQuestionAssignmentExporter->setQuestionIds($questions);
1281 $skillQuestionAssignmentExporter->setAssignmentList($assignmentList);
1282 $skillQuestionAssignmentExporter->export();
1288 $ilDB = $DIC[
'ilDB'];
1290 require_once
'Modules/Test/classes/class.ilTestSkillLevelThresholdList.php';
1292 $thresholdList->setTestId($this->test_obj->getTestId());
1293 $thresholdList->loadFromDb();
1295 require_once
'Modules/Test/classes/class.ilTestSkillLevelThresholdExporter.php';
1297 $skillLevelThresholdExporter->setXmlWriter($a_xml_writer);
1298 $skillLevelThresholdExporter->setAssignmentList($assignmentList);
1299 $skillLevelThresholdExporter->setThresholdList($thresholdList);
1300 $skillLevelThresholdExporter->export();
1309 $ilDB = $DIC[
'ilDB'];
1311 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionSkillAssignmentList.php';
1313 $assignmentList->setParentObjId($this->test_obj->getId());
1314 $assignmentList->loadFromDb();
1315 $assignmentList->loadAdditionalSkillData();
1317 return $assignmentList;
buildQuestionSkillAssignmentList()
exportToCSV($deliver=true, $filterby="", $filtertext="", $passedonly=false)
Exports the evaluation data to the CSV file format.
aggregatedResultsToExcel($deliver=true)
Exports the aggregated results to the Microsoft Excel file format.
$forcedAccessFilteredParticipantList
getQuestionQtiXml($questionId)
static lookupPassResultsUpdateTimestamp($active_id, $pass)
populateQuestionSkillAssignmentsXml(ilXmlWriter $a_xml_writer, ilAssQuestionSkillAssignmentList $assignmentList, $questions)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
$resultExportingEnabledForTestExport
setIncludeRandomTestQuestionsEnabled(bool $includeRandomTestQuestionsEnabled)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildExportFileXML()
build xml export file
orderQuestions(array $questions)
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deliverData(string $a_data, string $a_filename, string $mime="application/octet-stream")
isResultExportingEnabledForTestExport()
__construct(&$a_test_obj, $a_mode="xml")
Constructor.
static _instanciateQuestion($question_id)
Creates an instance of a question with a given question id.
static getASCIIFilename(string $a_filename)
buildExportFile()
build export file (complete zip file)
setForcedAccessFilteredParticipantList(ilTestParticipantList $forcedAccessFilteredParticipantList)
getAccessFilteredParticipantList()
static instantiateQuestion(int $question_id)
exportXHTMLMediaObjects($a_export_dir)
header include for all ilias files.
static _lookupFields(int $a_user_id)
lookup fields (deprecated; use more specific methods instead)
setResultExportingEnabledForTestExport($resultExprtingEnabledForTestExport)
populateSkillLevelThresholdsXml(ilXmlWriter $a_xml_writer, ilAssQuestionSkillAssignmentList $assignmentList)
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
static _instantiateQuestion(int $question_id)
aggregatedResultsToCSV($deliver=true)
Exports the aggregated results to CSV.
exportToExcel($deliver=true, $filterby="", $filtertext="", $passedonly=false)
Exports the evaluation data to the Microsoft Excel file format.
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
getForcedAccessFilteredParticipantList()
buildExportResultFile()
build xml export file
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
populateQuestionSetConfigXml(ilXmlWriter $xmlWriter)