19 declare(strict_types=1);
48 private readonly TestResultRepository $test_pass_result_repository
54 return self::ACTION_ID;
59 return $this->test_access->checkManageParticipantsAccess();
68 return $this->ui_factory->table()->action()->standard(
69 $this->
lng->txt(self::ACTION_ID),
79 array $selected_participants,
80 bool $all_participants_selected
82 $modal = $this->ui_factory->modal()->interruptive(
83 $this->
lng->txt(
'finish_test'),
84 $this->
resolveMessage($selected_participants, $all_participants_selected),
85 $url_builder->
buildURI()->__toString()
86 )->withActionButtonLabel($this->
lng->txt(
'finish_test'));
88 if (count($selected_participants) > 1) {
89 $modal = $modal->withAffectedItems(
91 fn(
Participant $participant) => $this->ui_factory->modal()->interruptiveItem()->standard(
99 $selected_participants
110 array $selected_participants,
111 bool $all_participants_selected
113 if (!$this->test_access->checkManageParticipantsAccess()) {
114 $this->tpl->setOnScreenMessage(
116 $this->
lng->txt(
'no_permission'),
122 if (!$this->test_obj->getResetProcessingTime() && count($selected_participants) > 1) {
123 foreach ($selected_participants as $participant) {
124 if ($participant->hasUnfinishedAttempts()) {
125 $this->tpl->setOnScreenMessage(
127 $this->
lng->txt(
'finish_test_more_than_one_selected'),
136 $test_session_factory = new \ilTestSessionFactory(
142 foreach ($selected_participants as $participant) {
143 $process_locker = $this->process_locker_factory->withContextId($participant->getActiveId())->getLocker();
144 (new \ilTestPassFinishTasks(
145 $test_session_factory->getSession($participant->getActiveId()),
147 $this->test_pass_result_repository
148 ))->performFinishTasks($process_locker, StatusOfAttempt::FINISHED_BY_ADMINISTRATOR);
151 $logger = $this->test_obj->getTestLogger();
152 if ($logger->isLoggingEnabled()) {
153 $logger->logTestAdministrationInteraction(
154 $logger->getInteractionFactory()->buildTestAdministrationInteraction(
155 $this->test_obj->getRefId(),
156 $this->
user->getId(),
157 TestAdministrationInteractionTypes::TEST_RUN_OF_PARTICIPANT_CLOSED,
161 $selected_participants
168 $this->tpl->setOnScreenMessage(
170 $this->
lng->txt(
'test_attempts_finished'),
182 array $selected_participants,
183 bool $all_participants_selected
185 if ($all_participants_selected) {
186 return $this->
lng->txt(
'finish_test_all');
189 if (count($selected_participants) === 1) {
191 $this->
lng->txt(
'finish_test_single'),
194 $selected_participants[0]->getLastname(),
195 $selected_participants[0]->getFirstname()
200 return $this->
lng->txt(
'finish_test_multiple');
205 return $this->
lng->txt(
'finish_test_no_valid_participants_selected');
This describes commonalities between the different modals.
TestAdministrationInteractionTypes
onSubmit(URLBuilder $url_builder, ServerRequestInterface $request, array $selected_participants, bool $all_participants_selected)
buildURI()
Get a URI representation of the full URL including query string and fragment/hash.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(private readonly Language $lng, private readonly \ilGlobalTemplateInterface $tpl, private readonly UIFactory $ui_factory, private readonly \ilDBInterface $db, private readonly \ilTestProcessLockerFactory $process_locker_factory, private readonly \ilObjUser $user, private readonly \ilTestAccess $test_access, private readonly \ilObjTest $test_obj, private readonly TestResultRepository $test_pass_result_repository)
getTableAction(URLBuilder $url_builder, URLBuilderToken $row_id_token, URLBuilderToken $action_token, URLBuilderToken $action_type_token)
const MESSAGE_TYPE_SUCCESS
resolveMessage(array $selected_participants, bool $all_participants_selected)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getSelectionErrorMessage()
getModal(URLBuilder $url_builder, array $selected_participants, bool $all_participants_selected)
withParameter(URLBuilderToken $token, string|array $value)
Change an acquired parameter's value if the supplied token is valid.
allowActionForRecord(Participant $record)
const MESSAGE_TYPE_FAILURE