19 declare(strict_types=1);
65 protected readonly
ilObjUser $current_user,
86 protected readonly ResultsDataFactory $results_data_factory,
88 protected readonly TestResultRepository $test_pass_result_repository
95 if (!$this->test_access->checkManageParticipantsAccess()
96 && !$this->test_access->checkParticipantsResultsAccess()) {
97 ilObjTestGUI::accessViolationRedirect();
99 switch ($this->
ctrl->getNextClass($this)) {
100 case 'ilrepositorysearchgui':
102 $gui->setCallback($this, self::CALLBACK_ADD_PARTICIPANT, []);
104 $gui->addUserAccessFilterCallable($this->participant_access_filter->getManageParticipantsUserFilter(
105 $this->test_obj->getRefId()
109 $this->
ctrl->setReturnByClass(self::class, self::CMD_SHOW);
110 $this->
ctrl->forwardCommand($gui);
115 $command = $this->
ctrl->getCmd(self::CMD_SHOW) .
'Cmd';
122 $filter_closure = $this->participant_access_filter->getManageParticipantsUserFilter($this->test_obj->getRefId());
123 $filtered_user_ids = $filter_closure($user_ids);
126 $client_ips = $this->testrequest->retrieveArrayOfStringsFromPost(
'client_ip');
127 foreach ($filtered_user_ids as
$user_id) {
128 $this->test_obj->inviteUser($user_id, $client_ips[$users_count] ??
'');
133 if ($users_count > 0) {
134 $message = $this->
lng->txt(
'tst_invited_selected_users');
137 $this->main_tpl->setOnScreenMessage(
'info',
$message,
true);
139 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'tst_invited_nobody'),
true);
143 $this->
ctrl->redirectByClass(self::class, self::CMD_SHOW);
150 if ($this->test_obj->evalTotalPersons() > 0) {
156 $this->
ctrl->getLinkTargetByClass(self::class,
'show')
159 if ($modal !==
null) {
163 $this->main_tpl->setContent(
171 if ($modal !==
null) {
175 $this->
ctrl->redirectByClass(self::class, self::CMD_SHOW);
186 $this->participant_access_filter,
187 $this->participant_repository,
188 $this->results_data_factory,
189 $this->results_presentation_factory->getAttemptResultsSettings(
201 $uri = $this->
ctrl->getLinkTargetByClass(self::class,
'executeTableAction',
'',
true);
202 return new URLBuilder($this->data_factory->uri(ILIAS_HTTP_PATH .
'/' . $uri));
207 if (!$this->test_access->checkManageParticipantsAccess()) {
214 'auto_complete_name' => $this->
lng->txt(
'user'),
215 'submit_name' => $this->
lng->txt(
'add')
220 $search_btn = $this->ui_factory->button()->standard(
221 $this->
lng->txt(
'tst_search_users'),
222 $this->
ctrl->getLinkTargetByClass(
'ilRepositorySearchGUI',
'start')
229 if ($this->test_access->checkManageParticipantsAccess()) {
233 $this->
ctrl->clearParameterByClass(self::class,
'export_type');
235 $this->ui_factory->dropdown()->standard(
237 )->withLabel($this->
lng->txt(
'exp_eval_data'))
246 $this->
ctrl->setParameterByClass(self::class, self::EXPORT_TYPE_PARAMETER, ExportImportTypes::SCORED_ATTEMPT->value);
248 $this->ui_factory->button()->shy(
249 $this->
lng->txt(
'exp_scored_test_attempt'),
250 $this->
ctrl->getLinkTargetByClass(self::class,
'exportResults')
253 $this->
ctrl->setParameterByClass(self::class, self::EXPORT_TYPE_PARAMETER, ExportImportTypes::ALL_ATTEMPTS->value);
254 $options[] = $this->ui_factory->button()->shy(
255 $this->
lng->txt(
'exp_all_test_runs'),
256 $this->
ctrl->getLinkTargetByClass(self::class,
'exportResults')
270 $this->
ctrl->setParameterByClass(self::class, self::EXPORT_TYPE_PARAMETER, ExportImportTypes::CERTIFICATE_ARCHIVE->value);
271 $options[] = $this->ui_factory->button()->shy(
272 $this->
lng->txt(
'exp_grammar_as') .
' ' . $this->
lng->txt(
'exp_type_certificate'),
273 $this->
ctrl->getLinkTargetByClass(self::class,
'exportResults')
287 foreach ($this->component_factory->getActivePluginsInSlot(
'texp') as
$plugin) {
288 $plugin->setTest($this->test_obj);
290 $this->
ctrl->setParameterByClass(self::class, self::EXPORT_PLUGIN_TYPE_PARAMETER,
$plugin->getFormat());
291 $options[] = $this->ui_factory->button()->shy(
293 $this->
ctrl->getLinkTargetByClass(self::class,
'exportResults')
296 $this->
ctrl->clearParameterByClass(self::class, self::EXPORT_PLUGIN_TYPE_PARAMETER);
302 $export_type = ExportImportTypes::tryFrom(
303 $this->testrequest->strVal(self::EXPORT_TYPE_PARAMETER)
306 if ($export_type ===
null) {
307 $this->main_tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'error'));
314 $plugin_type = $this->testrequest->strVal(self::EXPORT_PLUGIN_TYPE_PARAMETER);
317 $this->export_factory->getExporter(
335 $this->response_handler,
336 $this->participant_repository,
351 $this->participant_access_filter,
367 $this->test_pass_result_repository
374 $this->participant_repository,
382 $this->participant_repository,
391 $this->participant_repository,
addPluginExportsToOptions(array $options)
This describes commonalities between the different modals.
addExportDropdown(ilToolbarGUI $toolbar)
addCertificateExportToOptions(array $options)
getTableActionUrlBuilder()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
buildOptionsForTestWithNames()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilTestParticipantAccessFilterFactory $participant_access_filter
addParticipants($user_ids=[])
addUserSearchControls(ilToolbarGUI $toolbar)
const CALLBACK_ADD_PARTICIPANT
static fillAutoCompleteToolbar(object $parent_object, ?ilToolbarGUI $toolbar=null, array $a_options=[], bool $a_sticky=false)
array( auto_complete_name = $lng->txt('user'), auto_complete_size = 15, user_type = array(ilCoursePar...
Class ilTestParticipantsGUI.
const EXPORT_TYPE_PARAMETER
const EXPORT_PLUGIN_TYPE_PARAMETER
showCmd(?Modal $modal=null)
__construct(protected ilObjTest $test_obj, protected readonly ilObjUser $current_user, protected readonly ilTestObjectiveOrientedContainer $objective_parent, protected readonly ilTestQuestionSetConfig $question_set_config, protected ilAccess $access, protected ilTestAccess $test_access, protected ilGlobalTemplateInterface $main_tpl, protected UIFactory $ui_factory, protected UIRenderer $ui_renderer, protected ilUIService $ui_service, protected DataFactory $data_factory, protected ilLanguage $lng, protected ilCtrlInterface $ctrl, protected Refinery $refinery, protected ilDBInterface $db, protected TabsManager $tabs_manager, protected ilToolbarGUI $toolbar, protected ilComponentFactory $component_factory, protected ExportImportFactory $export_factory, protected RequestDataCollector $testrequest, protected ResponseHandler $response_handler, protected ParticipantRepository $participant_repository, protected readonly ResultsDataFactory $results_data_factory, protected readonly ResultsPresentationFactory $results_presentation_factory, protected readonly TestResultRepository $test_pass_result_repository)
buildParticipantTableActions()