ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestServiceGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 use ILIAS\Test\Results\Data\Factory as ResultsDataFactory;
25 use ILIAS\Test\Results\Presentation\TitlesBuilder as ResultsTitlesBuilder;
26 use ILIAS\Test\Questions\Properties\Repository as TestQuestionsRepository;
27 use ILIAS\Test\Results\Data\Repository as TestResultRepository;
36 use ILIAS\Style\Content\Service as ContentStyle;
37 
53 {
54  protected readonly RequestDataCollector $testrequest;
56  protected readonly TestQuestionsRepository $testquestionsrepository;
57  protected ?ilTestService $service = null;
58  protected readonly ilDBInterface $db;
59  protected readonly ilLanguage $lng;
60  protected readonly TestLogger $logger;
61  protected readonly ilHelpGUI $help;
62  protected readonly ilRbacSystem $rbac_system;
63 
70  protected readonly ContentStyle $content_style;
71  protected readonly ilErrorHandling $error;
72  protected ilAccess $access;
73  protected readonly HTTPServices $http;
74  protected readonly ilCtrlInterface $ctrl;
75  protected readonly ilToolbarGUI $toolbar;
76  protected readonly ilTabsGUI $tabs;
77  protected readonly ilObjectDataCache $obj_cache;
79  protected readonly ilObjUser $user;
82  protected readonly Refinery $refinery;
83  protected readonly UIFactory $ui_factory;
84  protected readonly UIRenderer $ui_renderer;
85  protected readonly SkillService $skills_service;
86  protected readonly ilTestShuffler $shuffler;
87  protected readonly ResultsDataFactory $results_data_factory;
89 
90  protected readonly ILIAS $ilias;
91  protected readonly ilSetting $settings;
93  protected readonly ilTree $tree;
94  protected int $ref_id;
95 
99  protected TestResultRepository $test_pass_result_repository;
100 
102 
104 
105  private bool $contextResultPresentation = true;
106 
107  public function isContextResultPresentation(): bool
108  {
110  }
111 
112  public function setContextResultPresentation(bool $contextResultPresentation)
113  {
114  $this->contextResultPresentation = $contextResultPresentation;
115  }
116 
123  public function __construct(
124  protected ilObjTest $object
125  ) {
127  global $DIC;
128  $this->lng = $DIC['lng'];
129  $this->tpl = $DIC['tpl'];
130  $this->content_style = $DIC->contentStyle();
131  $this->error = $DIC['ilErr'];
132  $this->access = $DIC['ilAccess'];
133  $this->http = $DIC['http'];
134  $this->ctrl = $DIC['ilCtrl'];
135  $this->user = $DIC->user();
136  $this->ilias = $DIC['ilias'];
137  $this->settings = $DIC['ilSetting'];
138  $this->global_screen = $DIC['global_screen'];
139  $this->tree = $DIC['tree'];
140  $this->db = $DIC['ilDB'];
141  $this->component_repository = $DIC['component.repository'];
142  $this->navigation_history = $DIC['ilNavigationHistory'];
143  $this->tabs = $DIC['ilTabs'];
144  $this->toolbar = $DIC['ilToolbar'];
145  $this->help = $DIC['ilHelp'];
146  $this->refinery = $DIC->refinery();
147  $this->ui_factory = $DIC['ui.factory'];
148  $this->ui_renderer = $DIC['ui.renderer'];
149  $this->rbac_system = $DIC['rbacsystem'];
150  $this->obj_cache = $DIC['ilObjDataCache'];
151  $this->skills_service = $DIC->skills();
152  $this->post_wrapper = $DIC->http()->wrapper()->post();
153 
154  $local_dic = $object->getLocalDIC();
155  $this->testrequest = $local_dic['request_data_collector'];
156  $this->logger = $local_dic['logging.logger'];
157  $this->participant_access_filter = $local_dic['participant.access_filter.factory'];
158  $this->shuffler = $local_dic['shuffler'];
159  $this->results_data_factory = $local_dic['results.data.factory'];
160  $this->results_presentation_factory = $local_dic['results.presentation.factory'];
161  $this->questionrepository = $local_dic['question.general_properties.repository'];
162  $this->testquestionsrepository = $local_dic['questions.properties.repository'];
163  $this->test_pass_result_repository = $local_dic['results.data.test_result_repository'];
164 
165  $this->service = new ilTestService($this->object, $this->db, $this->questionrepository);
166 
167  $this->lng->loadLanguageModule('cert');
168  $this->ref_id = $this->object->getRefId();
169  $this->test_session_factory = new ilTestSessionFactory($this->object, $this->db, $this->user);
170  $this->test_sequence_factory = new ilTestSequenceFactory($this->object, $this->db, $this->questionrepository);
171  $this->objective_oriented_container = null;
172  }
173 
174  public function setParticipantData(ilTestParticipantData $participantData): void
175  {
176  $this->participantData = $participantData;
177  }
178 
180  {
181  return $this->participantData;
182  }
183 
188  public function getPassOverviewTableData(
189  ilTestSession $test_session,
190  array $passes,
191  bool $with_results
192  ): array {
193  $data = [];
194 
195  $objective_oriented_presentation = $this->getObjectiveOrientedContainer()
196  ?->isObjectiveOrientedPresentationRequired() ?? false;
197 
198  if ($objective_oriented_presentation) {
199  $consider_hidden_questions = false;
200 
201  $objectives_adapter = ilLOTestQuestionAdapter::getInstance($test_session);
202  } else {
203  $consider_hidden_questions = true;
204  }
205 
206  $scored_pass = \ilObjTest::_getResultPass($test_session->getActiveId());
207 
209  $test_session->getActiveId()
210  );
211 
212  foreach ($passes as $pass) {
213  $row = [
214  'scored' => false,
215  'pass' => $pass,
216  'date' => ilObjTest::lookupLastTestPassAccess($test_session->getActiveId(), $pass)
217  ];
218  $considerOptionalQuestions = true;
219 
220  if ($objective_oriented_presentation) {
221  $test_sequence = $this->test_sequence_factory->getSequenceByActiveIdAndPass($test_session->getActiveId(), $pass);
222  $test_sequence->loadFromDb();
223  $test_sequence->loadQuestions();
224 
225  if ($this->object->isRandomTest() && !$test_sequence->isAnsweringOptionalQuestionsConfirmed()) {
226  $considerOptionalQuestions = false;
227  }
228 
229  $test_sequence->setConsiderHiddenQuestionsEnabled($consider_hidden_questions);
230  $test_sequence->setConsiderOptionalQuestionsEnabled($considerOptionalQuestions);
231 
232  $objectives_list = $this->buildQuestionRelatedObjectivesList($objectives_adapter, $test_sequence);
233  $objectives_list->loadObjectivesTitles();
234 
235  $row['objectives'] = $objectives_list->getUniqueObjectivesStringForQuestions($test_sequence->getUserSequenceQuestions());
236  }
237 
238  if (!$with_results) {
239  $data[] = $row;
240  continue;
241  }
242 
243  $result_array = $this->object->getTestResult(
244  $test_session->getActiveId(),
245  $pass,
246  false,
247  $consider_hidden_questions,
248  $considerOptionalQuestions
249  );
250 
251  foreach ($result_array as $result_struct_key => $question) {
252  if ($result_struct_key === 'test'
253  || $result_struct_key === 'pass'
254  || $result_array[$result_struct_key]['requested_hints'] !== null) {
255  continue;
256  }
257 
258  $request_data = $question_hint_request_register->getRequestByTestPassIndexAndQuestionId($pass, $question['qid']);
259 
260  if ($request_data === null) {
261  continue;
262  }
263 
264  $result_array['pass']['total_requested_hints'] += $request_data->getRequestsCount();
265  $result_array[$result_struct_key]['requested_hints'] = $request_data->getRequestsCount();
266  $result_array[$result_struct_key]['hint_points'] = $request_data->getRequestsPoints();
267  }
268 
269  if (!$result_array['pass']['total_max_points']) {
270  $row['percentage'] = 0;
271  } else {
272  $row['percentage'] = ($result_array['pass']['total_reached_points'] / $result_array['pass']['total_max_points']) * 100;
273  }
274 
275  $row['max_points'] = $result_array['pass']['total_max_points'];
276  $row['reached_points'] = $result_array['pass']['total_reached_points'];
277  $row['scored'] = ($pass == $scored_pass);
278  $row['num_workedthrough_questions'] = $result_array['pass']['num_workedthrough'];
279  $row['num_questions_total'] = $result_array['pass']['num_questions_total'];
280 
281  if ($this->object->isOfferingQuestionHintsEnabled()) {
282  $row['hints'] = $result_array['pass']['total_requested_hints'];
283  }
284 
285  $data[] = $row;
286  }
287 
288  return $data;
289  }
290 
294  public function setObjectiveOrientedContainer(ilTestObjectiveOrientedContainer $objective_oriented_container)
295  {
296  $this->objective_oriented_container = $objective_oriented_container;
297  }
298 
303  {
305  }
306 
310  public function executeCommand()
311  {
312  $cmd = $this->ctrl->getCmd();
313  $next_class = $this->ctrl->getNextClass($this);
314 
315  switch ($next_class) {
316  default:
317  $ret = &$this->$cmd();
318  break;
319  }
320  return $ret;
321  }
322 
324  {
325  $table = new ilTestPassOverviewTableGUI($target_gui, '');
326 
327  $table->setPdfPresentationEnabled(
328  $this->testrequest->isset('pdf') && $this->testrequest->raw('pdf') == 1
329  );
330 
331  $table->setObjectiveOrientedPresentationEnabled(
332  $this->getObjectiveOrientedContainer()?->isObjectiveOrientedPresentationRequired() ?? false
333  );
334 
335  return $table;
336  }
337 
348  public function getPassListOfAnswers(
349  &$result_array,
350  $active_id,
351  $pass,
352  $show_solutions = false,
353  $only_answered_questions = false,
354  $show_question_only = false,
355  $show_reached_points = false,
356  $anchorNav = false,
357  ?ilTestQuestionRelatedObjectivesList $objectives_list = null,
358  ?ResultsTitlesBuilder $testResultHeaderLabelBuilder = null
359  ): string {
360  $maintemplate = new ilTemplate('tpl.il_as_tst_list_of_answers.html', true, true, 'components/ILIAS/Test');
361 
362  $counter = 1;
363  // output of questions with solutions
364  foreach ($result_array as $question_data) {
365  if (!array_key_exists('workedthrough', $question_data)) {
366  $question_data['workedthrough'] = 0;
367  }
368  if (!array_key_exists('qid', $question_data)) {
369  $question_data['qid'] = -1;
370  }
371 
372  if (($question_data['workedthrough'] == 1) || ($only_answered_questions == false)) {
373  $template = new ilTemplate('tpl.il_as_qpl_question_printview.html', true, true, 'components/ILIAS/TestQuestionPool');
374  $question_id = $question_data["qid"] ?? null;
375  if ($question_id !== null
376  && $question_id !== -1
377  && is_numeric($question_id)) {
378  $maintemplate->setCurrentBlock('printview_question');
379  $question_gui = $this->object->createQuestionGUI("", $question_id);
380 
381  $question_gui->getObject()->setShuffler($this->shuffler->getAnswerShuffleFor(
382  (int) $question_id,
383  (int) $active_id,
384  (int) $pass
385  ));
386  if (is_object($question_gui)) {
387  if ($anchorNav) {
388  $template->setCurrentBlock('block_id');
389  $template->setVariable('BLOCK_ID', "detailed_answer_block_act_{$active_id}_qst_{$question_id}");
390  $template->parseCurrentBlock();
391 
392  $template->setCurrentBlock('back_anchor');
393  $template->setVariable('HREF_BACK_ANCHOR', "#pass_details_tbl_row_act_{$active_id}_qst_{$question_id}");
394  $template->setVariable('TXT_BACK_ANCHOR', $this->lng->txt('tst_back_to_question_list'));
395  $template->parseCurrentBlock();
396  }
397 
398  if ($show_reached_points) {
399  $template->setCurrentBlock("result_points");
400  $template->setVariable("RESULT_POINTS", $this->lng->txt("tst_reached_points") . ": " . $question_gui->getObject()->getReachedPoints($active_id, $pass) . " " . $this->lng->txt("of") . " " . $question_gui->getObject()->getMaximumPoints());
401  $template->parseCurrentBlock();
402  }
403  $template->setVariable("COUNTER_QUESTION", $counter . ". ");
404  $template->setVariable("TXT_QUESTION_ID", $this->lng->txt('question_id_short'));
405  $template->setVariable("QUESTION_ID", $question_gui->getObject()->getId());
406  $template->setVariable("QUESTION_TITLE", $this->object->getQuestionTitle($question_gui->getObject()->getTitleForHTMLOutput()));
407 
408  if ($objectives_list !== null) {
409  $objectives = $this->lng->txt('tst_res_lo_objectives_header') . ': ';
410  $objectives .= $objectives_list->getQuestionRelatedObjectiveTitles($question_gui->getObject()->getId());
411  $template->setVariable("OBJECTIVES", $objectives);
412  }
413 
414  $show_question_only = ($this->object->getShowSolutionAnswersOnly()) ? true : false;
415 
416  $show_feedback = $this->isContextResultPresentation() && $this->object->getShowSolutionFeedback();
417  $show_best_solution = $this->isContextResultPresentation() && $show_solutions;
418  $show_graphical_output = $this->isContextResultPresentation();
419 
420  if ($show_best_solution) {
421  $compare_template = new ilTemplate('tpl.il_as_tst_answers_compare.html', true, true, 'components/ILIAS/Test');
422  $test_session = $this->test_session_factory->getSession($active_id);
423  if ($pass <= $test_session->getLastFinishedPass()) {
424  $compare_template->setVariable("HEADER_PARTICIPANT", $this->lng->txt('tst_header_participant'));
425  } else {
426  $compare_template->setVariable("HEADER_PARTICIPANT", $this->lng->txt('tst_header_participant_no_answer'));
427  }
428 
429  $compare_template->setVariable("HEADER_SOLUTION", $this->lng->txt('tst_header_solution'));
430  $result_output = $question_gui->getSolutionOutput($active_id, $pass, $show_graphical_output, false, $show_question_only, $show_feedback);
431  $best_output = $question_gui->getSolutionOutput($active_id, $pass, false, false, $show_question_only, false, true);
432 
433  $compare_template->setVariable('PARTICIPANT', $result_output);
434  $compare_template->setVariable('SOLUTION', $best_output);
435  $template->setVariable('SOLUTION_OUTPUT', $compare_template->get());
436  } else {
437  $result_output = $question_gui->getSolutionOutput($active_id, $pass, $show_graphical_output, false, $show_question_only, $show_feedback);
438  $template->setVariable('SOLUTION_OUTPUT', $result_output);
439  }
440 
441  $maintemplate->setCurrentBlock('printview_question');
442  $maintemplate->setVariable("QUESTION_PRINTVIEW", $template->get());
443  $maintemplate->parseCurrentBlock();
444  $counter++;
445  }
446  }
447  }
448  }
449 
450  if ($testResultHeaderLabelBuilder !== null) {
451  if ($pass !== null) {
452  $headerText = $testResultHeaderLabelBuilder->getListOfAnswersHeaderLabel($pass + 1);
453  } else {
454  $headerText = $testResultHeaderLabelBuilder->getVirtualListOfAnswersHeaderLabel();
455  }
456  } else {
457  $headerText = '';
458  }
459 
460  $maintemplate->setVariable('RESULTS_OVERVIEW', $headerText);
461  return $maintemplate->get();
462  }
463 
464  protected function getPassDetailsOverviewTableGUI(
465  array $result_array,
466  int $active_id,
467  int $pass,
468  ilTestServiceGUI $target_gui,
469  string $target_cmd,
470  ?ilTestQuestionRelatedObjectivesList $objectives_list = null,
471  bool $multiple_objectives_involved = true
473  $this->ctrl->setParameter($target_gui, 'active_id', $active_id);
474  $this->ctrl->setParameter($target_gui, 'pass', $pass);
475 
476  $table_gui = $this->buildPassDetailsOverviewTableGUI($target_gui, $target_cmd);
477  $table_gui->setShowHintCount($this->object->isOfferingQuestionHintsEnabled());
478 
479  if ($objectives_list !== null) {
480  $table_gui->setQuestionRelatedObjectivesList($objectives_list);
481  $table_gui->setObjectiveOrientedPresentationEnabled(true);
482  }
483 
484  $table_gui->setMultipleObjectivesInvolved($multiple_objectives_involved);
485 
486  $table_gui->setActiveId($active_id);
487  $table_gui->setShowSuggestedSolution(false);
488 
489  $users_question_solutions = [];
490 
491  foreach ($result_array as $key => $val) {
492  if ($key === 'test' || $key === 'pass') {
493  continue;
494  }
495 
496  if ($this->object->getShowSolutionSuggested() && strlen($val['solution'])) {
497  $table_gui->setShowSuggestedSolution(true);
498  }
499 
500  if (isset($val['pass'])) {
501  $table_gui->setPassColumnEnabled(true);
502  }
503 
504  $users_question_solutions[$key] = $val;
505  }
506 
507  $table_gui->initColumns();
508 
509  $table_gui->setFilterCommand($target_cmd . 'SetTableFilter');
510  $table_gui->setResetCommand($target_cmd . 'ResetTableFilter');
511 
512  $table_gui->setData($users_question_solutions);
513 
514  return $table_gui;
515  }
516 
523  public function getResultsSignature(): string
524  {
525  if ($this->object->getShowSolutionSignature() && !$this->object->getAnonymity()) {
526  $template = new ilTemplate("tpl.il_as_tst_results_userdata_signature.html", true, true, "components/ILIAS/Test");
527  $template->setVariable("TXT_DATE", $this->lng->txt("date"));
530  $template->setVariable("VALUE_DATE", ilDatePresentation::formatDate(new ilDate(time(), IL_CAL_UNIX)));
532  $template->setVariable("TXT_SIGNATURE", $this->lng->txt("tst_signature"));
533  $template->setVariable("IMG_SPACER", ilUtil::getImagePath("media/spacer.png"));
534  return $template->get();
535  } else {
536  return "";
537  }
538  }
539 
549  public function getAdditionalUsrDataHtmlAndPopulateWindowTitle($testSession, $active_id, $overwrite_anonymity = false): string
550  {
551  if (!is_object($testSession)) {
552  throw new InvalidArgumentException('Not an object, expected ilTestSession');
553  }
554  $template = new ilTemplate("tpl.il_as_tst_results_userdata.html", true, true, "components/ILIAS/Test");
555  $user_id = $this->object->_getUserIdFromActiveId($active_id);
556  if (strlen(ilObjUser::_lookupLogin($user_id)) > 0) {
557  $user = new ilObjUser($user_id);
558  } else {
559  $user = new ilObjUser();
560  $user->setLastname($this->lng->txt('deleted_user'));
561  }
562  $t = $testSession->getSubmittedTimestamp();
563  if (!$t) {
564  $t = $this->object->_getLastAccess($testSession->getActiveId());
565  }
566 
567  if ($this->getObjectiveOrientedContainer()?->isObjectiveOrientedPresentationRequired()) {
568  $uname = $this->object->userLookupFullName($user_id, $overwrite_anonymity);
569  $template->setCurrentBlock('name');
570  $template->setVariable('TXT_USR_NAME', $this->lng->txt("name"));
571  $template->setVariable('VALUE_USR_NAME', $uname);
572  $template->parseCurrentBlock();
573  }
574 
575  $title_matric = "";
576  if (strlen($user->getMatriculation()) && (($this->object->getAnonymity() == false) || ($overwrite_anonymity))) {
577  $template->setCurrentBlock("matriculation");
578  $template->setVariable("TXT_USR_MATRIC", $this->lng->txt("matriculation"));
579  $template->setVariable("VALUE_USR_MATRIC", $user->getMatriculation());
580  $template->parseCurrentBlock();
581  $title_matric = " - " . $this->lng->txt("matriculation") . ": " . $user->getMatriculation();
582  }
583 
584  $invited_user = array_pop($this->object->getInvitedUsers($user_id));
585  $title_client = '';
586  $template->setVariable("TXT_TEST_TITLE", $this->lng->txt("title"));
587  $template->setVariable("VALUE_TEST_TITLE", $this->object->getTitle());
588 
589  // change the pagetitle (tab title or title in title bar of window)
590  $pagetitle = $this->object->getTitle() . $title_matric . $title_client;
591  $this->tpl->setHeaderPageTitle($pagetitle);
592 
593  return $template->get();
594  }
595 
605  public function getCorrectSolutionOutput($question_id, $active_id, $pass, ?ilTestQuestionRelatedObjectivesList $objectives_list = null): string
606  {
607  $ilUser = $this->user;
608 
609  $test_id = $this->object->getTestId();
610  $question_gui = $this->object->createQuestionGUI("", $question_id);
611 
612  $template = new ilTemplate("tpl.il_as_tst_correct_solution_output.html", true, true, "components/ILIAS/Test");
613  $show_question_only = ($this->object->getShowSolutionAnswersOnly()) ? true : false;
614  $result_output = $question_gui->getSolutionOutput($active_id, $pass, true, false, $show_question_only, $this->object->getShowSolutionFeedback(), false, false, true);
615  $best_output = $question_gui->getSolutionOutput($active_id, $pass, false, false, $show_question_only, false, true, false, false);
616  if ($this->object->getShowSolutionFeedback() && $this->testrequest->raw('cmd') != 'outCorrectSolution') {
617  $specificAnswerFeedback = $question_gui->getSpecificFeedbackOutput(
618  $question_gui->getObject()->fetchIndexedValuesFromValuePairs(
619  $question_gui->getObject()->getSolutionValues($active_id, $pass)
620  )
621  );
622  if (strlen($specificAnswerFeedback)) {
623  $template->setCurrentBlock("outline_specific_feedback");
624  $template->setVariable("OUTLINE_SPECIFIC_FEEDBACK", $specificAnswerFeedback);
625  $template->parseCurrentBlock();
626  }
627  }
628  $template->setVariable("TEXT_YOUR_SOLUTION", $this->lng->txt("tst_your_answer_was"));
629  $template->setVariable("TEXT_SOLUTION_OUTPUT", $this->lng->txt("tst_your_answer_was")); // Mantis 28646. I don't really know why Ingmar renamed the placeholder, so
630  // I set both old and new since the old one is set as well in several places.
631  $maxpoints = $question_gui->getObject()->getMaximumPoints();
632  if ($maxpoints == 1) {
633  $template->setVariable("QUESTION_TITLE", $this->object->getQuestionTitle($question_gui->getObject()->getTitleForHTMLOutput()) . " (" . $maxpoints . " " . $this->lng->txt("point") . ")");
634  } else {
635  $template->setVariable("QUESTION_TITLE", $this->object->getQuestionTitle($question_gui->getObject()->getTitleForHTMLOutput()) . " (" . $maxpoints . " " . $this->lng->txt("points") . ")");
636  }
637  if ($objectives_list !== null) {
638  $objectives = $this->lng->txt('tst_res_lo_objectives_header') . ': ';
639  $objectives .= $objectives_list->getQuestionRelatedObjectiveTitles($question_gui->getObject()->getId());
640  $template->setVariable('OBJECTIVES', $objectives);
641  }
642  $template->setVariable("SOLUTION_OUTPUT", $result_output);
643  $template->setVariable("RECEIVED_POINTS", sprintf($this->lng->txt("you_received_a_of_b_points"), $question_gui->getObject()->getReachedPoints($active_id, $pass), $maxpoints));
644  $template->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
645  $template->setVariable("BACKLINK_TEXT", "&lt;&lt; " . $this->lng->txt("back"));
646  return $template->get();
647  }
648 
650  ilTestServiceGUI $target_gui,
651  string $target_cmd
653  return new ilTestPassDetailsOverviewTableGUI($this->ctrl, $target_gui, $target_cmd);
654  }
655 
656  protected function isGradingMessageRequired(): bool
657  {
658  $session = $this->test_session_factory->getSession();
659  if ($this->getObjectiveOrientedContainer()->isObjectiveOrientedPresentationRequired()
660  || $this->object->getScoreSettings()->getScoringSettings()->getPassScoring() === ilObjTest::SCORE_LAST_PASS
661  && $session->getLastFinishedPass() < $session->getLastStartedPass()) {
662  return false;
663  }
664 
665  if ($this->object->isShowGradingStatusEnabled()
666  || $this->object->isShowGradingMarkEnabled()) {
667  return true;
668  }
669 
670  return false;
671  }
672 
673  protected function getGradingMessageBuilder(int $active_id): ilTestGradingMessageBuilder
674  {
675  $gradingMessageBuilder = new ilTestGradingMessageBuilder($this->lng, $this->tpl, $this->object);
676 
677  $gradingMessageBuilder->setActiveId($active_id);
678 
679  return $gradingMessageBuilder;
680  }
681 
683  ilLOTestQuestionAdapter $objectives_adapter,
684  ilTestQuestionSequence $test_sequence
686  $questionRelatedObjectivesList = new ilTestQuestionRelatedObjectivesList();
687 
688  $objectives_adapter->buildQuestionRelatedObjectiveList($test_sequence, $questionRelatedObjectivesList);
689 
690  return $questionRelatedObjectivesList;
691  }
692 
693  protected function getFilteredTestResult(
694  int $active_id,
695  int $pass,
696  bool $considerHiddenQuestions,
697  bool $considerOptionalQuestions
698  ): array {
699  $ilDB = $this->db;
700  $component_repository = $this->component_repository;
701 
702  $table_gui = $this->buildPassDetailsOverviewTableGUI($this, 'outUserPassDetails');
703 
704  $questionList = new ilAssQuestionList($ilDB, $this->lng, $this->refinery, $component_repository);
705 
706  $questionList->setParentObjIdsFilter([$this->object->getId()]);
707  $questionList->setQuestionInstanceTypeFilter(ilAssQuestionList::QUESTION_INSTANCE_TYPE_DUPLICATES);
708 
709  foreach ($table_gui->getFilterItems() as $item) {
710  if (substr($item->getPostVar(), 0, strlen('tax_')) == 'tax_') {
711  $v = $item->getValue();
712 
713  if (is_array($v) && count($v) && !(int) $v[0]) {
714  continue;
715  }
716 
717  $taxId = substr($item->getPostVar(), strlen('tax_'));
718  $questionList->addTaxonomyFilter($taxId, $item->getValue(), $this->object->getId(), 'tst');
719  } elseif ($item->getValue() !== false) {
720  $questionList->addFieldFilter($item->getPostVar(), $item->getValue());
721  }
722  }
723 
724  $questionList->load();
725 
726  $filteredTestResult = [];
727 
728  $resultData = $this->object->getTestResult($active_id, $pass, false, $considerHiddenQuestions, $considerOptionalQuestions);
729 
730  foreach ($resultData as $resultItemKey => $resultItemValue) {
731  if ($resultItemKey === 'test' || $resultItemKey === 'pass') {
732  continue;
733  }
734 
735  if (!$questionList->isInList($resultItemValue['qid'])) {
736  continue;
737  }
738 
739  $filteredTestResult[] = $resultItemValue;
740  }
741 
742  return $filteredTestResult;
743  }
744 
745  protected function populateContent(string $content): void
746  {
747  $this->tpl->setContent($content);
748  }
749 
750  protected function outCorrectSolutionCmd(): void
751  {
752  $this->outCorrectSolution(); // cannot be named xxxCmd, because it's also called from context without Cmd in names
753  }
754 
755  protected function outCorrectSolution(): void
756  {
757  if (!$this->object->getShowSolutionDetails()) {
758  $this->tpl->setOnScreenMessage('info', $this->lng->txt("no_permission"), true);
759  $this->ctrl->redirectByClass([ilRepositoryGUI::class, ilObjTestGUI::class, ilInfoScreenGUI::class]);
760  }
761 
762  $testSession = $this->test_session_factory->getSession();
763  $active_id = $testSession->getActiveId();
764 
765  if (!($active_id > 0)) {
766  $this->ctrl->redirectByClass([ilRepositoryGUI::class, ilObjTestGUI::class, ilInfoScreenGUI::class]);
767  }
768 
769  $this->ctrl->saveParameter($this, "pass");
770  $pass = (int) $this->testrequest->raw("pass");
771 
772  $active_id = (int) $this->testrequest->raw('evaluation');
773 
774  $test_sequence = $this->test_sequence_factory->getSequenceByActiveIdAndPass($active_id, $pass);
775  $test_sequence->loadFromDb();
776  $test_sequence->loadQuestions();
777 
778  if (!$test_sequence->questionExists($active_id)) {
779  ilObjTestGUI::accessViolationRedirect();
780  }
781 
782  if ($this->getObjectiveOrientedContainer()->isObjectiveOrientedPresentationRequired()) {
783  $test_sequence = $this->test_sequence_factory->getSequenceByActiveIdAndPass($active_id, $pass);
784  $test_sequence->loadFromDb();
785  $test_sequence->loadQuestions();
786 
787  $objectives_adapter = ilLOTestQuestionAdapter::getInstance($testSession);
788  $objectives_list = $this->buildQuestionRelatedObjectivesList($objectives_adapter, $test_sequence);
789  $objectives_list->loadObjectivesTitles();
790  } else {
791  $objectives_list = null;
792  }
793 
794  $ilTabs = $this->tabs;
795 
796  if ($this instanceof ilTestEvalObjectiveOrientedGUI) {
797  $ilTabs->setBackTarget(
798  $this->lng->txt("tst_back_to_virtual_pass"),
799  $this->ctrl->getLinkTarget($this, 'showVirtualPass')
800  );
801  } else {
802  $ilTabs->setBackTarget(
803  $this->lng->txt("tst_back_to_pass_details"),
804  $this->ctrl->getLinkTarget($this, 'outUserPassDetails')
805  );
806  }
807  $ilTabs->clearSubTabs();
808 
809  $this->tpl->setCurrentBlock("ContentStyle");
810  $this->tpl->setVariable("LOCATION_CONTENT_STYLESHEET", ilObjStyleSheet::getContentStylePath(0));
811  $this->tpl->parseCurrentBlock();
812 
813  $this->tpl->setCurrentBlock("SyntaxStyle");
814  $this->tpl->setVariable("LOCATION_SYNTAX_STYLESHEET", ilObjStyleSheet::getSyntaxStylePath());
815  $this->tpl->parseCurrentBlock();
816 
817  $this->tpl->addCss(ilUtil::getStyleSheetLocation("output", "test_print.css"), "print");
818  if ($this->object->getShowSolutionAnswersOnly()) {
819  $this->tpl->addCss(ilUtil::getStyleSheetLocation("output", "test_print_hide_content.css"), "print");
820  }
821 
822  $solution = $this->getCorrectSolutionOutput($active_id, $active_id, $pass, $objectives_list);
823 
824  $this->tpl->setContent($solution);
825  }
826 
827  protected function populatePassFinishDate(ilTemplate $tpl, ?int $pass_finish_date): void
828  {
829  if ($pass_finish_date === null) {
830  return;
831  }
834  $pass_finish_date_string = ilDatePresentation::formatDate(new ilDateTime($pass_finish_date, IL_CAL_UNIX));
836  $tpl->setVariable("PASS_FINISH_DATE_LABEL", $this->lng->txt('tst_pass_finished_on'));
837  $tpl->setVariable("PASS_FINISH_DATE_VALUE", $pass_finish_date_string);
838  }
839 
840  protected function populateExamId(ilTemplate $tpl, int $active_id, int $pass): void
841  {
842  if ($this->object->isShowExamIdInTestResultsEnabled()) {
843  $tpl->setVariable('EXAM_ID_TXT', $this->lng->txt('exam_id'));
844  $tpl->setVariable('EXAM_ID', ilObjTest::lookupExamId(
845  $active_id,
846  $pass
847  ));
848  }
849  }
850 
851  public function getObject(): ilObjTest
852  {
853  return $this->object;
854  }
855 }
readonly HTTPServices $http
static array static setUseRelativeDates(bool $a_status)
set use relative dates
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
populateExamId(ilTemplate $tpl, int $active_id, int $pass)
Readable part of repository interface to ilComponentDataDB.
readonly Refinery $refinery
getAdditionalUsrDataHtmlAndPopulateWindowTitle($testSession, $active_id, $overwrite_anonymity=false)
Returns the user data for a test results output.
readonly ilTestShuffler $shuffler
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readonly ilCtrlInterface $ctrl
getCorrectSolutionOutput($question_id, $active_id, $pass, ?ilTestQuestionRelatedObjectivesList $objectives_list=null)
Returns an output of the solution to an answer compared to the correct solution.
Interface Observer Contains several chained tasks and infos about them.
readonly TestQuestionsRepository $testquestionsrepository
readonly GlobalScreenServices $global_screen
setObjectiveOrientedContainer(ilTestObjectiveOrientedContainer $objective_oriented_container)
TestResultRepository $test_pass_result_repository
Help GUI class.
ilGlobalTemplateInterface ilTemplate $tpl
sk 2023-08-01: We need this union type, even if it is wrong! To change this
readonly ilLanguage $lng
getFilteredTestResult(int $active_id, int $pass, bool $considerHiddenQuestions, bool $considerOptionalQuestions)
setContextResultPresentation(bool $contextResultPresentation)
readonly GeneralQuestionPropertiesRepository $questionrepository
getResultsSignature()
Returns HTML code for a signature field.
readonly ArrayBasedRequestWrapper $post_wrapper
const IL_CAL_UNIX
readonly RequestDataCollector $testrequest
getPassDetailsOverviewTableGUI(array $result_array, int $active_id, int $pass, ilTestServiceGUI $target_gui, string $target_cmd, ?ilTestQuestionRelatedObjectivesList $objectives_list=null, bool $multiple_objectives_involved=true)
buildPassOverviewTableGUI(ilTestEvaluationGUI $target_gui)
readonly TestLogger $logger
static getRequestRequestStatisticDataRegisterByActiveId($activeId)
readonly ResultsDataFactory $results_data_factory
readonly ilComponentRepository $component_repository
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setParticipantData(ilTestParticipantData $participantData)
$objectives
ilTestSequenceFactory $test_sequence_factory
static getInstance(ilTestSession $a_test_session)
static http()
Fetches the global http state from ILIAS.
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
readonly UIRenderer $ui_renderer
getGradingMessageBuilder(int $active_id)
readonly ilHelpGUI $help
readonly ilDBInterface $db
static _getResultPass($active_id)
Retrieves the pass number that should be counted for a given user.
buildQuestionRelatedObjectiveList(ilTestQuestionSequence $a_test_sequence, ilTestQuestionRelatedObjectivesList $a_objectives_list)
readonly ilNavigationHistory $navigation_history
getPassOverviewTableData(ilTestSession $test_session, array $passes, bool $with_results)
getPassListOfAnswers(&$result_array, $active_id, $pass, $show_solutions=false, $only_answered_questions=false, $show_question_only=false, $show_reached_points=false, $anchorNav=false, ?ilTestQuestionRelatedObjectivesList $objectives_list=null, ?ResultsTitlesBuilder $testResultHeaderLabelBuilder=null)
Returns the list of answers of a users test pass.
global $DIC
Definition: shib_login.php:22
readonly ResultsPresentationFactory $results_presentation_factory
setBackTarget(string $a_title, string $a_target, string $a_frame="")
Output class for assessment test evaluation.
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
Class ilObjForumAdministration.
Class ilTestPassOverviewTableGUI.
readonly ilObjUser $user
const SCORE_LAST_PASS
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
Last visited history for repository items.
readonly ilRbacSystem $rbac_system
readonly ilObjectDataCache $obj_cache
Service class for tests.
readonly UIFactory $ui_factory
ilTestParticipantData $participantData
ilTestObjectiveOrientedContainer $objective_oriented_container
buildQuestionRelatedObjectivesList(ilLOTestQuestionAdapter $objectives_adapter, ilTestQuestionSequence $test_sequence)
__construct(Container $dic, ilPlugin $plugin)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readonly ilTabsGUI $tabs
executeCommand()
execute command
buildPassDetailsOverviewTableGUI(ilTestServiceGUI $target_gui, string $target_cmd)
readonly ilSetting $settings
Service GUI class for tests.
ilTestSessionFactory $test_session_factory
populatePassFinishDate(ilTemplate $tpl, ?int $pass_finish_date)
populateContent(string $content)
readonly SkillService $skills_service
ilTestParticipantAccessFilterFactory $participant_access_filter
readonly ilErrorHandling $error
readonly ContentStyle $content_style
readonly ilToolbarGUI $toolbar
static lookupExamId($active_id, $pass)
static _lookupLogin(int $a_user_id)