42 private \ILIAS\HTTP\GlobalHttpState
$http;
50 $this->main_tpl = $DIC->ui()->mainTemplate();
51 $this->
http = $DIC->http();
53 $this->
ctrl = $DIC->ctrl();
54 $this->lang = $DIC->language();
55 $this->db = $DIC->database();
56 $this->
tabs = $DIC->tabs();
57 $this->
toolbar = $DIC->toolbar();
58 $this->testrequest = $DIC->test()->internal()->request();
103 switch ($this->
ctrl->getNextClass($this)) {
104 case "iltestevaluationgui":
108 $this->
tabs->clearTargets();
109 $this->
tabs->clearSubTabs();
110 $this->
ctrl->forwardCommand($gui);
113 case 'ilassquestionpagegui':
116 $forwarder->forward();
121 $command = $this->
ctrl->getCmd(self::CMD_SHOW_PARTICIPANTS) .
'Cmd';
131 return $this->
http->wrapper()->post()->retrieve(
134 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
143 $tableGUI->setTitle($this->lang->txt(
'tst_tbl_results_grades'));
152 $this->main_tpl->setOnScreenMessage(
157 $this->main_tpl->setOnScreenMessage(
159 $this->questionSetConfig->getDepenciesInVulnerableStateMessage($this->lang)
170 $full_participant_list = $this->
getTestObj()->getActiveParticipantList();
171 $participantList = $full_participant_list->getAccessFilteredList($manageParticipantFilter);
172 $access_to_results_participants = $full_participant_list->getAccessFilteredList($accessResultsFilter);
173 foreach ($access_to_results_participants as $participant) {
174 if (!$participantList->isActiveIdInList($participant->getActiveId())) {
175 $participantList->addParticipant($participant);
179 $scoredParticipantList = $participantList->getScoredParticipantList();
184 $tableGUI->setAccessResultsCommandsEnabled(
188 $tableGUI->setManageResultsCommandsEnabled(
192 if ($this->testAccess->checkManageParticipantsAccess()
193 && $scoredParticipantList->hasScorings()) {
198 $tableGUI->setAnonymity($this->
getTestObj()->getAnonymity());
200 $tableGUI->initColumns();
201 $tableGUI->initCommands();
203 $tableGUI->setData($participantList->getScoringsTableRows());
205 $this->main_tpl->setContent($tableGUI->getHTML());
211 $delete_all_results_btn->setCaption(
'delete_all_user_data');
212 $delete_all_results_btn->setUrl($this->
ctrl->getLinkTarget($this,
'deleteAllUserResults'));
219 $cgui->setFormAction($this->
ctrl->getFormAction($this));
220 $cgui->setHeaderText($this->lang->txt(
"delete_all_user_data_confirmation"));
221 $cgui->setCancel($this->lang->txt(
"cancel"), self::CMD_SHOW_PARTICIPANTS);
222 $cgui->setConfirm($this->lang->txt(
"proceed"), self::CMD_PERFORM_DELETE_ALL_USER_RESULTS);
224 $this->main_tpl->setContent($cgui->getHTML());
234 $participantData->setParticipantAccessFilter($accessFilter);
235 $participantData->load($this->
getTestObj()->getTestId());
237 $this->
getTestObj()->removeTestResults($participantData);
239 $this->main_tpl->setOnScreenMessage(
'success', $this->lang->txt(
"tst_all_user_data_deleted"),
true);
240 $this->
ctrl->redirect($this, self::CMD_SHOW_PARTICIPANTS);
246 if ($usr_ids === []) {
247 $this->main_tpl->setOnScreenMessage(
'info', $this->lang->txt(
"select_one_user"),
true);
248 $this->
ctrl->redirect($this);
252 $cgui->setHeaderText($this->lang->txt(
"confirm_delete_single_user_data"));
254 $cgui->setFormAction($this->
ctrl->getFormAction($this));
255 $cgui->setCancel($this->lang->txt(
"cancel"), self::CMD_SHOW_PARTICIPANTS);
256 $cgui->setConfirm($this->lang->txt(
"confirm"), self::CMD_PERFORM_DELETE_SELECTED_USER_RESULTS);
261 $participantData->setParticipantAccessFilter($accessFilter);
263 $participantData->setActiveIdsFilter($usr_ids);
265 $participantData->load($this->
getTestObj()->getTestId());
267 foreach ($participantData->getActiveIds() as $activeId) {
268 if ($this->testObj->getAnonymity()) {
269 $username = $this->lang->txt(
'anonymous');
271 $username = $participantData->getFormatedFullnameByActiveId($activeId);
279 $this->lang->txt(
"usr")
283 $this->main_tpl->setContent($cgui->getHTML());
289 if ($usr_ids !== []) {
295 $participantData->setParticipantAccessFilter($accessFilter);
296 $participantData->setActiveIdsFilter($usr_ids);
298 $participantData->load($this->
getTestObj()->getTestId());
300 $this->
getTestObj()->removeTestResults($participantData);
302 $this->main_tpl->setOnScreenMessage(
'success', $this->lang->txt(
"tst_selected_user_data_deleted"),
true);
305 $this->
ctrl->redirect($this, self::CMD_SHOW_PARTICIPANTS);
311 if ($usr_ids !== []) {
314 $this->
showUserResults($show_pass_details =
true, $show_answers =
true, $show_reached_points =
true);
320 if ($usr_ids !== []) {
323 $this->
showUserResults($show_pass_details =
false, $show_answers =
true);
329 if ($usr_ids !== []) {
332 $this->
showUserResults($show_pass_details =
true, $show_answers =
false);
335 protected function showUserResults($show_pass_details, $show_answers, $show_reached_points =
false): void
337 $this->
tabs->clearTargets();
338 $this->
tabs->clearSubTabs();
342 if (!is_array($show_user_results) || count($show_user_results) === 0) {
343 $this->main_tpl->setOnScreenMessage(
'info', $this->lang->txt(
"select_one_user"),
true);
344 $this->
ctrl->redirect($this, self::CMD_SHOW_PARTICIPANTS);
350 $show_reached_points,
355 $this->main_tpl->setVariable(
"ADM_CONTENT", $template->get());
357 if ($this->
getTestObj()->getShowSolutionAnswersOnly()) {
358 $this->main_tpl->addCss(
375 $show_reached_points,
383 $this->
tabs->setBackTarget(
384 $this->lang->txt(
'back'),
385 $this->
ctrl->getLinkTarget($this, self::CMD_SHOW_PARTICIPANTS)
390 $this->
tabs->setBack2Target($this->lang->txt(
'back_to_objective_container'), $courseLink);
393 $template =
new ilTemplate(
"tpl.il_as_tst_participants_result_output.html",
true,
true,
"Modules/Test");
397 $this->
ctrl->setParameter($this,
'pdf',
'1');
398 $toolbar->setPdfExportLinkTarget($this->
ctrl->getLinkTarget($this, $this->ctrl->getCmd()));
399 $this->
ctrl->setParameter($this,
'pdf',
'');
402 if ($this->testrequest->isset(
'show_best_solutions')) {
404 } elseif ($this->testrequest->isset(
'hide_best_solutions')) {
406 } elseif (
ilSession::get(
'tst_results_show_best_solutions') !== null) {
411 $this->
ctrl->setParameter($this,
'hide_best_solutions',
'1');
412 $toolbar->setHideBestSolutionsLinkTarget($this->
ctrl->getLinkTarget($this, $this->ctrl->getCmd()));
413 $this->
ctrl->setParameter($this,
'hide_best_solutions',
'');
415 $this->
ctrl->setParameter($this,
'show_best_solutions',
'1');
416 $toolbar->setShowBestSolutionsLinkTarget($this->
ctrl->getLinkTarget($this, $this->ctrl->getCmd()));
417 $this->
ctrl->setParameterByClass(
'',
'show_best_solutions',
'');
422 $participantData->setParticipantAccessFilter(
426 $participantData->setActiveIdsFilter($show_user_results);
428 $participantData->load($this->
getTestObj()->getTestId());
429 $toolbar->setParticipantSelectorOptions($participantData->getOptionArray());
432 $template->setVariable(
'RESULTS_TOOLBAR', $toolbar->getHTML());
436 $serviceGUI->setParticipantData($participantData);
441 foreach ($show_user_results as
$key => $active_id) {
442 if (!in_array($active_id, $participantData->getActiveIds())) {
448 if ($active_id > 0) {
449 $results = $serviceGUI->getResultsOfUserOutput(
450 $testSessionFactory->getSession($active_id),
452 $this->
getTestObj()->_getResultPass($active_id),
460 if ($count < count($show_user_results)) {
461 $template->touchBlock(
"break");
463 $template->setCurrentBlock(
"user_result");
464 $template->setVariable(
"USER_RESULT",
$results);
465 $template->parseCurrentBlock();
472 $this->
getTestObj()->getTitleFilenameCompliant(),
481 if (!$this->testrequest->isset(
'pdf')) {
485 if (!$this->testrequest->raw(
'pdf')) {
static get(string $a_var)
const CMD_CONFIRM_DELETE_ALL_USER_RESULTS
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...
deleteSingleUserResultsCmd()
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
ilTestQuestionSetConfig $questionSetConfig
const PDF_USER_RESULT
PDF Purposes.
showUserResults($show_pass_details, $show_answers, $show_reached_points=false)
static getStyleSheetLocation(string $mode="output", string $a_css_name="", string $a_css_location="")
get full style sheet file name (path inclusive) of current user
createUserResults( $show_pass_details, $show_answers, $show_reached_points, $show_user_results)
static http()
Fetches the global http state from ILIAS.
addDeleteAllTestResultsButton(ilToolbarGUI $toolbar)
ILIAS Test InternalRequestService $testrequest
const CMD_PERFORM_DELETE_SELECTED_USER_RESULTS
deleteAllUserResultsCmd()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setQuestionSetConfig(ilTestQuestionSetConfig $questionSetConfig)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
setTestAccess(ilTestAccess $testAccess)
confirmDeleteSelectedUserDataCmd()
ilGlobalTemplateInterface $main_tpl
const CMD_SHOW_PARTICIPANTS
ILIAS Refinery Factory $refinery
ilTestObjectiveOrientedContainer $objectiveParent
const CMD_CONFIRM_DELETE_SELECTED_USER_RESULTS
setTestObj(ilObjTest $testObj)
const CMD_PERFORM_DELETE_ALL_USER_RESULTS
static getManageParticipantsUserFilter($refId)
ILIAS HTTP GlobalHttpState $http
static getAccessResultsUserFilter($refId)
Service GUI class for tests.
static generatePDF($pdf_output, $output_mode, $filename=null, $purpose=null)
static prepareGenerationRequest(string $service, string $purpose)
Prepare the content processing for a PDF generation request This function should be called as in a re...
const PDF_OUTPUT_DOWNLOAD
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.
setObjectiveParent(ilTestObjectiveOrientedContainer $objectiveParent)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
confirmDeleteAllUserResultsCmd()