19 declare(strict_types=1);
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'];
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();
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'];
165 $this->service =
new ilTestService($this->
object, $this->db, $this->questionrepository);
167 $this->
lng->loadLanguageModule(
'cert');
168 $this->ref_id = $this->
object->getRefId();
170 $this->test_sequence_factory =
new ilTestSequenceFactory($this->
object, $this->db, $this->questionrepository);
171 $this->objective_oriented_container =
null;
196 ?->isObjectiveOrientedPresentationRequired() ??
false;
198 if ($objective_oriented_presentation) {
199 $consider_hidden_questions =
false;
203 $consider_hidden_questions =
true;
212 foreach ($passes as $pass) {
216 'date' => ilObjTest::lookupLastTestPassAccess($test_session->
getActiveId(), $pass)
218 $considerOptionalQuestions =
true;
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();
225 if ($this->
object->isRandomTest() && !$test_sequence->isAnsweringOptionalQuestionsConfirmed()) {
226 $considerOptionalQuestions =
false;
229 $test_sequence->setConsiderHiddenQuestionsEnabled($consider_hidden_questions);
230 $test_sequence->setConsiderOptionalQuestionsEnabled($considerOptionalQuestions);
233 $objectives_list->loadObjectivesTitles();
235 $row[
'objectives'] = $objectives_list->getUniqueObjectivesStringForQuestions($test_sequence->getUserSequenceQuestions());
238 if (!$with_results) {
243 $result_array = $this->
object->getTestResult(
247 $consider_hidden_questions,
248 $considerOptionalQuestions
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) {
258 $request_data = $question_hint_request_register->getRequestByTestPassIndexAndQuestionId($pass, $question[
'qid']);
260 if ($request_data ===
null) {
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();
269 if (!$result_array[
'pass'][
'total_max_points']) {
270 $row[
'percentage'] = 0;
272 $row[
'percentage'] = ($result_array[
'pass'][
'total_reached_points'] / $result_array[
'pass'][
'total_max_points']) * 100;
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'];
281 if ($this->
object->isOfferingQuestionHintsEnabled()) {
282 $row[
'hints'] = $result_array[
'pass'][
'total_requested_hints'];
312 $cmd = $this->
ctrl->getCmd();
313 $next_class = $this->
ctrl->getNextClass($this);
315 switch ($next_class) {
317 $ret = &$this->$cmd();
327 $table->setPdfPresentationEnabled(
328 $this->testrequest->isset(
'pdf') && $this->testrequest->raw(
'pdf') == 1
331 $table->setObjectiveOrientedPresentationEnabled(
352 $show_solutions =
false,
353 $only_answered_questions =
false,
354 $show_question_only =
false,
355 $show_reached_points =
false,
358 ?ResultsTitlesBuilder $testResultHeaderLabelBuilder =
null 360 $maintemplate =
new ilTemplate(
'tpl.il_as_tst_list_of_answers.html',
true,
true,
'components/ILIAS/Test');
364 foreach ($result_array as $question_data) {
365 if (!array_key_exists(
'workedthrough', $question_data)) {
366 $question_data[
'workedthrough'] = 0;
368 if (!array_key_exists(
'qid', $question_data)) {
369 $question_data[
'qid'] = -1;
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);
381 $question_gui->getObject()->setShuffler($this->shuffler->getAnswerShuffleFor(
386 if (is_object($question_gui)) {
388 $template->setCurrentBlock(
'block_id');
389 $template->setVariable(
'BLOCK_ID',
"detailed_answer_block_act_{$active_id}_qst_{$question_id}");
390 $template->parseCurrentBlock();
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();
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();
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()));
408 if ($objectives_list !== null) {
409 $objectives = $this->
lng->txt(
'tst_res_lo_objectives_header') .
': ';
410 $objectives .= $objectives_list->getQuestionRelatedObjectiveTitles($question_gui->getObject()->getId());
414 $show_question_only = ($this->
object->getShowSolutionAnswersOnly()) ?
true :
false;
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'));
426 $compare_template->setVariable(
"HEADER_PARTICIPANT", $this->
lng->txt(
'tst_header_participant_no_answer'));
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);
433 $compare_template->setVariable(
'PARTICIPANT', $result_output);
434 $compare_template->setVariable(
'SOLUTION', $best_output);
435 $template->setVariable(
'SOLUTION_OUTPUT', $compare_template->get());
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);
441 $maintemplate->setCurrentBlock(
'printview_question');
442 $maintemplate->setVariable(
"QUESTION_PRINTVIEW", $template->get());
443 $maintemplate->parseCurrentBlock();
450 if ($testResultHeaderLabelBuilder !==
null) {
451 if ($pass !==
null) {
452 $headerText = $testResultHeaderLabelBuilder->getListOfAnswersHeaderLabel($pass + 1);
454 $headerText = $testResultHeaderLabelBuilder->getVirtualListOfAnswersHeaderLabel();
460 $maintemplate->setVariable(
'RESULTS_OVERVIEW', $headerText);
461 return $maintemplate->get();
471 bool $multiple_objectives_involved =
true 473 $this->
ctrl->setParameter($target_gui,
'active_id', $active_id);
474 $this->
ctrl->setParameter($target_gui,
'pass', $pass);
477 $table_gui->setShowHintCount($this->
object->isOfferingQuestionHintsEnabled());
479 if ($objectives_list !==
null) {
480 $table_gui->setQuestionRelatedObjectivesList($objectives_list);
481 $table_gui->setObjectiveOrientedPresentationEnabled(
true);
484 $table_gui->setMultipleObjectivesInvolved($multiple_objectives_involved);
486 $table_gui->setActiveId($active_id);
487 $table_gui->setShowSuggestedSolution(
false);
489 $users_question_solutions = [];
491 foreach ($result_array as $key => $val) {
492 if ($key ===
'test' || $key ===
'pass') {
496 if ($this->
object->getShowSolutionSuggested() && strlen($val[
'solution'])) {
497 $table_gui->setShowSuggestedSolution(
true);
500 if (isset($val[
'pass'])) {
501 $table_gui->setPassColumnEnabled(
true);
504 $users_question_solutions[$key] = $val;
507 $table_gui->initColumns();
509 $table_gui->setFilterCommand($target_cmd .
'SetTableFilter');
510 $table_gui->setResetCommand($target_cmd .
'ResetTableFilter');
512 $table_gui->setData($users_question_solutions);
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"));
532 $template->setVariable(
"TXT_SIGNATURE", $this->
lng->txt(
"tst_signature"));
534 return $template->get();
551 if (!is_object($testSession)) {
554 $template =
new ilTemplate(
"tpl.il_as_tst_results_userdata.html",
true,
true,
"components/ILIAS/Test");
555 $user_id = $this->
object->_getUserIdFromActiveId($active_id);
560 $user->setLastname($this->
lng->txt(
'deleted_user'));
562 $t = $testSession->getSubmittedTimestamp();
564 $t = $this->
object->_getLastAccess($testSession->getActiveId());
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();
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();
584 $invited_user = array_pop($this->
object->getInvitedUsers(
$user_id));
586 $template->setVariable(
"TXT_TEST_TITLE", $this->
lng->txt(
"title"));
587 $template->setVariable(
"VALUE_TEST_TITLE", $this->
object->getTitle());
590 $pagetitle = $this->
object->getTitle() . $title_matric . $title_client;
591 $this->tpl->setHeaderPageTitle($pagetitle);
593 return $template->get();
609 $test_id = $this->
object->getTestId();
610 $question_gui = $this->
object->createQuestionGUI(
"", $question_id);
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)
622 if (strlen($specificAnswerFeedback)) {
623 $template->setCurrentBlock(
"outline_specific_feedback");
624 $template->setVariable(
"OUTLINE_SPECIFIC_FEEDBACK", $specificAnswerFeedback);
625 $template->parseCurrentBlock();
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"));
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") .
")");
635 $template->setVariable(
"QUESTION_TITLE", $this->
object->getQuestionTitle($question_gui->getObject()->getTitleForHTMLOutput()) .
" (" . $maxpoints .
" " . $this->
lng->txt(
"points") .
")");
637 if ($objectives_list !==
null) {
638 $objectives = $this->
lng->txt(
'tst_res_lo_objectives_header') .
': ';
639 $objectives .= $objectives_list->getQuestionRelatedObjectiveTitles($question_gui->getObject()->getId());
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",
"<< " . $this->
lng->txt(
"back"));
646 return $template->get();
658 $session = $this->test_session_factory->getSession();
661 && $session->getLastFinishedPass() < $session->getLastStartedPass()) {
665 if ($this->
object->isShowGradingStatusEnabled()
666 || $this->
object->isShowGradingMarkEnabled()) {
677 $gradingMessageBuilder->setActiveId($active_id);
679 return $gradingMessageBuilder;
690 return $questionRelatedObjectivesList;
696 bool $considerHiddenQuestions,
697 bool $considerOptionalQuestions
706 $questionList->setParentObjIdsFilter([$this->
object->getId()]);
709 foreach ($table_gui->getFilterItems() as $item) {
710 if (substr($item->getPostVar(), 0, strlen(
'tax_')) ==
'tax_') {
711 $v = $item->getValue();
713 if (is_array($v) && count($v) && !(
int) $v[0]) {
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());
724 $questionList->load();
726 $filteredTestResult = [];
728 $resultData = $this->
object->getTestResult($active_id, $pass,
false, $considerHiddenQuestions, $considerOptionalQuestions);
730 foreach ($resultData as $resultItemKey => $resultItemValue) {
731 if ($resultItemKey ===
'test' || $resultItemKey ===
'pass') {
735 if (!$questionList->isInList($resultItemValue[
'qid'])) {
739 $filteredTestResult[] = $resultItemValue;
742 return $filteredTestResult;
747 $this->tpl->setContent($content);
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]);
762 $testSession = $this->test_session_factory->getSession();
763 $active_id = $testSession->getActiveId();
765 if (!($active_id > 0)) {
766 $this->
ctrl->redirectByClass([ilRepositoryGUI::class, ilObjTestGUI::class, ilInfoScreenGUI::class]);
769 $this->
ctrl->saveParameter($this,
"pass");
770 $pass = (
int) $this->testrequest->raw(
"pass");
772 $active_id = (
int) $this->testrequest->raw(
'evaluation');
774 $test_sequence = $this->test_sequence_factory->getSequenceByActiveIdAndPass($active_id, $pass);
775 $test_sequence->loadFromDb();
776 $test_sequence->loadQuestions();
778 if (!$test_sequence->questionExists($active_id)) {
779 ilObjTestGUI::accessViolationRedirect();
783 $test_sequence = $this->test_sequence_factory->getSequenceByActiveIdAndPass($active_id, $pass);
784 $test_sequence->loadFromDb();
785 $test_sequence->loadQuestions();
789 $objectives_list->loadObjectivesTitles();
791 $objectives_list =
null;
798 $this->
lng->txt(
"tst_back_to_virtual_pass"),
799 $this->
ctrl->getLinkTarget($this,
'showVirtualPass')
802 $ilTabs->setBackTarget(
803 $this->
lng->txt(
"tst_back_to_pass_details"),
804 $this->
ctrl->getLinkTarget($this,
'outUserPassDetails')
807 $ilTabs->clearSubTabs();
809 $this->tpl->setCurrentBlock(
"ContentStyle");
811 $this->tpl->parseCurrentBlock();
813 $this->tpl->setCurrentBlock(
"SyntaxStyle");
815 $this->tpl->parseCurrentBlock();
818 if ($this->
object->getShowSolutionAnswersOnly()) {
824 $this->tpl->setContent($solution);
829 if ($pass_finish_date ===
null) {
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);
842 if ($this->
object->isShowExamIdInTestResultsEnabled()) {
853 return $this->object;
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.
isContextResultPresentation()
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)
getObjectiveOrientedContainer()
TestResultRepository $test_pass_result_repository
ilGlobalTemplateInterface ilTemplate $tpl
sk 2023-08-01: We need this union type, even if it is wrong! To change this
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 QUESTION_INSTANCE_TYPE_DUPLICATES
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)
static useRelativeDates()
readonly ResultsDataFactory $results_data_factory
isGradingMessageRequired()
readonly ilComponentRepository $component_repository
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setParticipantData(ilTestParticipantData $participantData)
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.
readonly UIRenderer $ui_renderer
getGradingMessageBuilder(int $active_id)
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.
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.
static getSyntaxStylePath()
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
readonly UIFactory $ui_factory
bool $contextResultPresentation
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...
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)
Class ArrayBasedRequestWrapper.
static _lookupLogin(int $a_user_id)