ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TabsManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test\Presentation;
22 
28 
33 {
38  public const TAB_ID_QUESTIONS = 'assQuestions';
39  public const SUBTAB_ID_QST_LIST_VIEW = 'qst_list_view';
40  public const SUBTAB_ID_QST_PAGE_VIEW = 'qst_page_view';
41 
42  public const TAB_ID_TEST = 'test';
43  public const TAB_ID_INFOSCREEN = 'info_short';
44  public const TAB_ID_SETTINGS = 'settings';
45  public const SUBTAB_ID_GENERAL_SETTINGS = 'general';
46  public const TAB_ID_LEARNING_PROGRESS = 'learning_progress';
47  public const TAB_ID_MANUAL_SCORING = 'manscoring';
48  public const TAB_ID_CORRECTION = 'scoringadjust';
49  public const TAB_ID_HISTORY = 'history';
50  public const TAB_ID_META_DATA = 'meta_data';
51  public const TAB_ID_EXPORT = 'export';
52  public const TAB_ID_PERMISSIONS = 'perm_settings';
53 
54  public const TAB_ID_PARTICIPANTS = 'participants';
55 
56  public const TAB_ID_YOUR_RESULTS = 'your_results';
57  public const SUBTAB_ID_MY_RESULTS = 'myresults';
58  public const SUBTAB_ID_LO_RESULTS = 'loresults';
59  public const SUBTAB_ID_HIGHSCORE = 'highscore';
60  public const SUBTAB_ID_SKILL_RESULTS = 'skillresults';
61  public const SUBTAB_ID_MY_SOLUTIONS = 'mysolutions';
62 
63  private const SETTINGS_SUBTAB_ID_GENERAL = 'general';
64  public const SETTINGS_SUBTAB_ID_MARK_SCHEMA = 'mark_schema';
65  public const SETTINGS_SUBTAB_ID_SCORING = 'scoring';
66  public const SETTINGS_SUBTAB_ID_EDIT_INTRODUCTION_PAGE = 'edit_introduction';
67  public const SETTINGS_SUBTAB_ID_EDIT_CONCLUSION_PAGE = 'edit_concluding_remarks';
68  private const SETTINGS_SUBTAB_ID_CERTIFICATE = 'certificate';
69  public const SETTINGS_SUBTAB_ID_ASSIGN_SKILL_TRESHOLDS = 'tst_skl_sub_tab_thresholds';
70  public const SETTINGS_SUBTAB_ID_ASSIGN_SKILLS_TO_QUESTIONS = 'qpl_skl_sub_tab_quest_assign';
71  private const SETTINGS_SUBTAB_ID_PERSONAL_DEFAULT_SETTINGS = 'tst_default_settings';
72 
73  private const QUESTIONS_SUBTAB_ID_RANDOM_SETTINGS = 'tst_rnd_quest_cfg_tab_general';
74  private const QUESTIONS_SUBTAB_ID_RANDOM_POOLS = 'tst_rnd_quest_cfg_tab_pool';
75 
76  protected ?string $parent_back_href = null;
77  protected ?string $parent_back_label = null;
78 
79  public function __construct(
80  private readonly \ilTabsGUI $tabs,
81  private readonly \ilLanguage $lng,
82  private readonly \ilCtrlInterface $ctrl,
83  private readonly \ilAccess $access,
84  private readonly \ilTestAccess $test_access,
85  private readonly \ilObjTest $test_object,
86  private readonly \ilTestObjectiveOrientedContainer $objective_parent,
87  private readonly \ilTestSession $test_session
88  ) {
89  }
90 
91  public function activateTab(string $tab_id): void
92  {
93  switch ($tab_id) {
94  case self::TAB_ID_PARTICIPANTS:
95  case self::TAB_ID_YOUR_RESULTS:
96  case self::TAB_ID_SETTINGS:
97  case self::TAB_ID_TEST:
98  $this->tabs->activateTab($tab_id);
99  }
100  }
101 
102  public function activateSubTab(string $sub_tab_id): void
103  {
104  switch ($sub_tab_id) {
105  case self::SUBTAB_ID_MY_RESULTS:
106  case self::SUBTAB_ID_LO_RESULTS:
107  case self::SUBTAB_ID_HIGHSCORE:
108  case self::SUBTAB_ID_SKILL_RESULTS:
109  case self::SUBTAB_ID_MY_SOLUTIONS:
110 
111  case self::SUBTAB_ID_QST_LIST_VIEW:
112  case self::SUBTAB_ID_QST_PAGE_VIEW:
113 
114  case self::SETTINGS_SUBTAB_ID_GENERAL:
115  case self::SETTINGS_SUBTAB_ID_MARK_SCHEMA:
116  case self::SETTINGS_SUBTAB_ID_SCORING:
117  case self::SETTINGS_SUBTAB_ID_EDIT_INTRODUCTION_PAGE:
118  case self::SETTINGS_SUBTAB_ID_EDIT_CONCLUSION_PAGE:
119  case self::SETTINGS_SUBTAB_ID_CERTIFICATE:
120  case self::SETTINGS_SUBTAB_ID_PERSONAL_DEFAULT_SETTINGS:
121  $this->tabs->activateSubTab($sub_tab_id);
122  }
123  }
124 
125  public function resetTabsAndAddBacklink(string $back_link_target): void
126  {
127  $this->tabs->clearTargets();
128  $this->tabs->setBackTarget($this->lng->txt('back'), $back_link_target);
129  }
130 
131  public function getParentBackLabel(): ?string
132  {
134  }
135 
136  public function setParentBackLabel(?string $parent_back_label)
137  {
138  $this->parent_back_label = $parent_back_label;
139  }
140 
141  public function getParentBackHref(): ?string
142  {
144  }
145 
146  public function setParentBackHref(?string $parent_back_href): void
147  {
148  $this->parent_back_href = $parent_back_href;
149  }
150 
151  public function hasParentBackLink(): bool
152  {
153  if ($this->getParentBackHref() === null) {
154  return false;
155  }
156 
157  if ($this->getParentBackLabel() === null) {
158  return false;
159  }
160 
161  return true;
162  }
163 
164  protected function isReadAccessGranted(): bool
165  {
166  return $this->access->checkAccess('read', '', $this->test_object->getRefId());
167  }
168 
169  protected function isWriteAccessGranted(): bool
170  {
171  return $this->access->checkAccess('write', '', $this->test_object->getRefId());
172  }
173 
174  protected function isHistoryAccessGranted(): bool
175  {
176  return $this->test_object->getTestLogger()->isLoggingEnabled()
177  && $this->access->checkAccess('tst_history_read', '', $this->test_object->getRefId());
178  }
179 
180  protected function isPermissionsAccessGranted(): bool
181  {
182  return $this->access->checkAccess('edit_permission', '', $this->test_object->getRefId());
183  }
184 
185  protected function isLpAccessGranted(): bool
186  {
187  return \ilLearningProgressAccess::checkAccess($this->test_object->getRefId());
188  }
189 
190  protected function checkParticipantsTabAccess(): bool
191  {
192  if ($this->test_access->checkManageParticipantsAccess()
193  || $this->test_access->checkParticipantsResultsAccess()) {
194  return true;
195  }
196 
197  return false;
198  }
199 
200  protected function checkScoreParticipantsTabAccess(): bool
201  {
202  return $this->test_access->checkScoreParticipantsAccess();
203  }
204 
205  public function perform(): void
206  {
207  if ($this->isTabsConfigSetupRequired()) {
208  $this->setupTabsGuiConfig();
209  }
210  }
211 
212  protected function isTabsConfigSetupRequired(): bool
213  {
214  if (preg_match('/^ass(.*?)gui$/i', $this->ctrl->getNextClass($this))) {
215  return false;
216  }
217 
218  if ($this->ctrl->getNextClass($this) == 'ilassquestionpagegui') {
219  return false;
220  }
221 
222  if ($this->ctrl->getCmdClass() == 'iltestoutputgui') {
223  return false;
224  }
225 
226  if ($this->ctrl->getCmdClass() == 'iltestevaluationgui') {
227  return in_array($this->ctrl->getCmd(), [
228  '', 'outUserResultsPassOverview', 'outUserListOfAnswerPasses', 'singleResults'
229  ]);
230  }
231 
232  return true;
233  }
234 
235  protected function setupTabsGuiConfig(): void
236  {
237  if ($this->hasParentBackLink()) {
238  $this->tabs->setBack2Target($this->getParentBackLabel(), $this->getParentBackHref());
239  }
240 
241  $class_path = $this->ctrl->getCurrentClassPath();
242 
243  switch (array_pop($class_path)) {
244  case MarkSchemaGUI::class:
245  case SettingsMainGUI::class:
246  case SettingsScoringGUI::class:
247 
248  if ($this->isWriteAccessGranted()) {
249  $this->getSettingsSubTabs();
250  }
251 
252  break;
253  }
254 
255  switch ($this->ctrl->getCmd()) {
256  case 'resume':
257  case 'previous':
258  case 'next':
259  case 'summary':
260  case 'directfeedback':
261  case 'finishTest':
262  case 'outCorrectSolution':
263  case 'showAnswersOfUser':
264  case 'backFromSummary':
265  case 'show_answers':
266  case 'setsolved':
267  case 'resetsolved':
268  case 'confirmFinish':
269  case 'outTestSummary':
270  case 'outQuestionSummary':
271  case 'gotoQuestion':
272  case 'selectImagemapRegion':
273  case 'confirmSubmitAnswers':
274  case 'finalSubmission':
275  case 'postpone':
276  case 'outUserPassDetails':
277  case 'checkPassword':
278  case 'exportCertificate':
279  case 'finishListOfAnswers':
280  case 'backConfirmFinish':
281  case 'showFinalStatement':
282  return;
283  case 'browseForQuestions':
284  case 'filter':
285  case 'resetFilter':
286  case 'resetTextFilter':
287  case 'insertQuestions':
288  $classes = [
289  'iltestdashboardgui',
290  'iltestresultsgui',
291  'illearningprogressgui' // #8497: resetfilter is also used in lp
292  ];
293  if (!in_array($this->ctrl->getNextClass($this), $classes)) {
294  $this->getBrowseForQuestionsTab();
295  }
296  break;
297  case 'scoring':
298  case 'certificate':
299  case 'certificateservice':
300  case 'certificateImport':
301  case 'certificateUpload':
302  case 'certificateEditor':
303  case 'certificateDelete':
304  case 'certificateSave':
305  case 'defaults':
306  case 'deleteDefaults':
307  case 'addDefaults':
308  case 'applyDefaults':
309  case 'inviteParticipants':
310  case 'searchParticipants':
311  if ($this->isWriteAccessGranted() && in_array(strtolower($this->ctrl->getCmdClass()), ['ilobjtestgui', 'ilcertificategui'])) {
312  $this->getSettingsSubTabs();
313  }
314  break;
315  case 'export':
316  case 'print':
317  break;
318  }
319 
320  // test tab
321  if ($this->isReadAccessGranted()) {
322  $this->tabs->addTab(
323  self::TAB_ID_TEST,
324  $this->lng->txt('test'),
325  $this->ctrl->getLinkTargetByClass(
326  [
327  \ilObjTestGUI::class, TestScreenGUI::class],
329  )
330  );
331  }
332 
333  // info tab
334  if ($this->isReadAccessGranted()
335  && !$this->test_object->getMainSettings()->getAdditionalSettings()->getHideInfoTab()) {
336  $this->tabs->addTarget(
337  'info_short',
338  $this->ctrl->getLinkTargetByClass(
339  [
340  \ilRepositoryGUI::class,
341  \ilObjTestGUI::class,
342  \ilInfoScreenGUI::class
343  ]
344  ),
345  ['', 'outIntroductionPage', 'setAnonymousId', 'redirectToInfoScreen']
346  );
347  }
348 
349  // settings tab
350  if ($this->isWriteAccessGranted()) {
351  $settingsCommands = [
352  'marks', 'showMarkSchema','addMarkStep', 'deleteMarkSteps',
353  'resetToSimpleMarkSchema', 'saveMarks', 'certificate',
354  'certificateEditor', 'certificateSave',
355  'certificatePreview', 'certificateDelete', 'certificateUpload', 'certificateImport',
356  'scoring', 'defaults', 'addDefaults', 'deleteDefaults', 'applyDefaults',
357  'inviteParticipants', 'saveFixedParticipantsStatus', 'searchParticipants', 'addParticipants' // ARE THEY RIGHT HERE
358  ];
359 
360  $reflection = new \ReflectionClass(SettingsMainGUI::class);
361  foreach ($reflection->getConstants() as $name => $value) {
362  if (substr($name, 0, 4) === 'CMD_') {
363  $settingsCommands[] = $value;
364  }
365  }
366 
367  $reflection = new \ReflectionClass(SettingsScoringGUI::class);
368  foreach ($reflection->getConstants() as $name => $value) {
369  if (substr($name, 0, 4) === 'CMD_') {
370  $settingsCommands[] = $value;
371  }
372  }
373 
374  $settingsCommands[] = ''; // DO NOT KNOW WHAT THIS IS DOING, BUT IT'S REQUIRED
375 
376  $this->tabs->addTarget(
377  'settings',
378  $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, SettingsMainGUI::class]),
379  $settingsCommands,
380  [
381  'ilmarkschemagui',
382  'ilobjtestsettingsmaingui',
383  'ilobjtestsettingsscoringresultsgui',
384  'ilobjtestgui',
385  'ilcertificategui'
386  ]
387  );
388  }
389 
390  if ($this->test_object->isFixedTest()) {
391  $target = $this->ctrl->getLinkTargetByClass(
392  \ilObjTestGUI::class,
394  );
395  }
396 
397  if ($this->test_object->isRandomTest()) {
398  $target = $this->ctrl->getLinkTargetByClass(\ilTestRandomQuestionSetConfigGUI::class);
399  }
400 
401  if ($this->isWriteAccessGranted()) {
402  $this->tabs->addTarget(
403  'assQuestions',
404  $target,
405  [
406  'showQuestions', 'browseForQuestions', 'questionBrowser', 'createQuestion',
407  'filter', 'resetFilter', 'insertQuestions', 'back',
408  'executeCreateQuestion', 'cancelCreateQuestion',
409  'addQuestionpool', 'saveRandomQuestions', 'saveQuestionSelectionMode', 'print',
410  'addsource', 'removesource', 'randomQuestions'
411  ],
412  );
413  }
414 
415  if ($this->needsParticipantsTab()) {
416  $this->tabs->addTab(
417  self::TAB_ID_PARTICIPANTS,
418  $this->lng->txt('participants'),
419  $this->getParticipantsTabTarget()
420  );
421  }
422 
423  if ($this->needsYourResultsTab()) {
424  $this->tabs->addTab(
425  self::TAB_ID_YOUR_RESULTS,
426  $this->lng->txt('your_results'),
427  $this->getYourResultsTabTarget()
428  );
429  }
430 
431  if ($this->checkScoreParticipantsTabAccess()) {
432  if ($this->test_object->getGlobalSettings()->isManualScoringEnabled()) {
433  // scoring tab
434  $this->tabs->addTarget(
435  self::TAB_ID_MANUAL_SCORING,
436  $this->ctrl->getLinkTargetByClass(
437  [\ilObjTestGUI::class, TestScoringByQuestionGUI::class],
438  'showManScoringByQuestionParticipantsTable'
439  ),
440  [
441  'showManScoringParticipantsTable',
442  'applyManScoringParticipantsFilter',
443  'resetManScoringParticipantsFilter',
444  'showManScoringParticipantScreen',
445  'showManScoringByQuestionParticipantsTable',
446  'applyManScoringByQuestionFilter',
447  'resetManScoringByQuestionFilter',
448  'saveManScoringByQuestion'
449  ],
450  ''
451  );
452  }
453  }
454 
455  if ($this->isHistoryAccessGranted()) {
456  $this->tabs->addTarget(
457  self::TAB_ID_HISTORY,
458  $this->ctrl->getLinkTargetByClass(\ilObjTestGUI::class, 'history'),
459  'history',
460  ''
461  );
462  }
463 
464  if ($this->isLpAccessGranted()) {
465  $this->tabs->addTarget(
466  self::TAB_ID_LEARNING_PROGRESS,
467  $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, \ilLearningProgressGUI::class], ''),
468  '',
469  [
470  'illplistofobjectsgui',
471  'illplistofsettingsgui',
472  'illearningprogressgui',
473  'illplistofprogressgui'
474  ]
475  );
476  }
477 
478  if ($this->isWriteAccessGranted()) {
479  $mdgui = new \ilObjectMetaDataGUI($this->test_object);
480  $mdtab = $mdgui->getTab(\ilObjTestGUI::class);
481  if ($mdtab) {
482  $this->tabs->addTarget(
483  self::TAB_ID_META_DATA,
484  $mdtab,
485  '',
486  'ilmdeditorgui'
487  );
488  }
489 
490  $this->tabs->addTarget(
491  self::TAB_ID_EXPORT,
492  $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, \ilTestExportGUI::class], ''),
493  '',
494  ['iltestexportgui']
495  );
496  }
497 
498  if ($this->isPermissionsAccessGranted()) {
499  $this->tabs->addTarget(
500  self::TAB_ID_PERMISSIONS,
501  $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, \ilPermissionGUI::class], 'perm'),
502  ['perm','info','owner'],
503  'ilpermissiongui'
504  );
505  }
506  }
507 
508  protected function getBrowseForQuestionsTab(): void
509  {
510  if ($this->isWriteAccessGranted()) {
511  $this->ctrl->saveParameterByClass($this->ctrl->getCmdClass(), 'q_id');
512  // edit page
513  $this->tabs->setBackTarget(
514  $this->lng->txt('backtocallingtest'),
515  $this->ctrl->getLinkTargetByClass($this->ctrl->getCmdClass(), \ilObjTestGUI::SHOW_QUESTIONS_CMD)
516  );
517  $this->tabs->addTarget(
518  'tst_browse_for_questions',
519  $this->ctrl->getLinkTargetByClass(\ilObjTestGUI::class, 'browseForQuestions'),
520  ['browseForQuestions', 'filter', 'resetFilter', 'resetTextFilter', 'insertQuestions'],
521  '',
522  '',
523  true
524  );
525  }
526  }
527 
528  protected function getRandomQuestionsTab(): void
529  {
530  if ($this->isWriteAccessGranted()) {
531  // edit page
532  $this->tabs->setBackTarget(
533  $this->lng->txt('backtocallingtest'),
534  $this->ctrl->getLinkTargetByClass(\ilTestRandomQuestionSetConfigGUI::class, \ilObjTestGUI::SHOW_QUESTIONS_CMD)
535  );
536  $this->tabs->addTarget(
537  'random_selection',
538  $this->ctrl->getLinkTargetByClass(\ilObjTestGUI::class, 'randomQuestions'),
539  ['randomQuestions'],
540  '',
541  ''
542  );
543  }
544  }
545 
546  public function getQuestionsSubTabs(): void
547  {
548  if (!$this->isWriteAccessGranted()) {
549  return;
550  }
551 
552  $this->tabs->activateTab(self::TAB_ID_QUESTIONS);
553 
554  if ($this->test_object->isRandomTest()) {
555  $this->tabs->addSubTabTarget(
556  self::QUESTIONS_SUBTAB_ID_RANDOM_SETTINGS,
557  $this->ctrl->getLinkTargetByClass(
558  \ilTestRandomQuestionSetConfigGUI::class,
560  ),
561  ['', 'showGeneralConfigForm', 'saveGeneralConfigForm']
562  );
563 
564  $this->tabs->addSubTabTarget(
565  self::QUESTIONS_SUBTAB_ID_RANDOM_POOLS,
566  $this->ctrl->getLinkTargetByClass(
567  \ilTestRandomQuestionSetConfigGUI::class,
569  ),
570  ['showSourcePoolDefinitionList']
571  );
572  }
573 
574  $this->tabs->addSubTab(
575  self::SUBTAB_ID_QST_LIST_VIEW,
576  $this->lng->txt('edit_test_questions'),
577  $this->ctrl->getLinkTargetByClass(\ilObjTestGUI::class, \ilObjTestGUI::SHOW_QUESTIONS_CMD)
578  );
579 
580  if ($this->test_object->isSkillServiceToBeConsidered()) {
581  $this->tabs->addSubTabTarget(
582  self::SETTINGS_SUBTAB_ID_ASSIGN_SKILLS_TO_QUESTIONS,
583  $this->ctrl->getLinkTargetByClass(
584  [
585  \ilTestSkillAdministrationGUI::class,
586  \ilAssQuestionSkillAssignmentsGUI::class
587  ],
589  ),
590  [
593  ]
594  );
595  }
596  }
597 
598  public function getSettingsSubTabs(): void
599  {
600  $this->tabs->addSubTabTarget(
601  self::SETTINGS_SUBTAB_ID_GENERAL,
602  $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, SettingsMainGUI::class]),
603  '',
604  [SettingsMainGUI::class]
605  );
606 
607  $this->tabs->addSubTabTarget(
608  self::SETTINGS_SUBTAB_ID_MARK_SCHEMA,
609  $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, MarkSchemaGUI::class], 'showMarkSchema'),
610  '',
611  [MarkSchemaGUI::class]
612  );
613 
614  $this->tabs->addSubTabTarget(
615  self::SETTINGS_SUBTAB_ID_SCORING,
616  $this->ctrl->getLinkTargetByClass(
617  [\ilObjTestGUI::class, SettingsScoringGUI::class],
619  ),
620  '',
621  [SettingsScoringGUI::class]
622  );
623 
624  $this->ctrl->setParameterByClass(\ilTestPageGUI::class, 'page_type', 'introductionpage');
625  $this->tabs->addSubTabTarget(
626  self::SETTINGS_SUBTAB_ID_EDIT_INTRODUCTION_PAGE,
627  $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, \ilTestPageGUI::class], 'preview'),
628  ['iltestpagegui']
629  );
630 
631  $this->ctrl->setParameterByClass(\ilTestPageGUI::class, 'page_type', 'concludingremarkspage');
632  $this->tabs->addSubTabTarget(
633  self::SETTINGS_SUBTAB_ID_EDIT_CONCLUSION_PAGE,
634  $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, \ilTestPageGUI::class], 'preview'),
635  ['iltestpagegui']
636  );
637  $this->ctrl->clearParameterByClass(\ilTestPageGUI::class, 'page_type');
638 
639  $validator = new \ilCertificateActiveValidator();
640  if ($validator->validate() === true) {
641  $this->tabs->addSubTabTarget(
642  self::SETTINGS_SUBTAB_ID_CERTIFICATE,
643  $this->ctrl->getLinkTargetByClass(\ilObjTestGUI::class, 'certificate'),
644  ['certificate', 'certificateEditor', 'certificateRemoveBackground', 'ceateSave',
645  'certificatePreview', 'certificateDelete', 'certificateUpload', 'certificateImport'],
646  ['', 'ilobjtestgui', 'ilcertificategui']
647  );
648  }
649 
650  if ($this->test_object->isSkillServiceToBeConsidered()) {
651  $this->tabs->addSubTabTarget(
652  self::SETTINGS_SUBTAB_ID_ASSIGN_SKILL_TRESHOLDS,
653  $this->ctrl->getLinkTargetByClass(
654  [
655  \ilTestSkillAdministrationGUI::class,
656  \ilTestSkillLevelThresholdsGUI::class
657  ],
659  ),
661  );
662  }
663 
664  $this->tabs->addSubTabTarget(
665  self::SETTINGS_SUBTAB_ID_PERSONAL_DEFAULT_SETTINGS,
666  $this->ctrl->getLinkTargetByClass(\ilObjTestGUI::class, 'defaults'),
667  ['defaults', 'deleteDefaults', 'addDefaults', 'applyDefaults'],
668  ['', 'ilobjtestgui', 'ilcertificategui']
669  );
670 
671  $lti_settings = new \ilLTIProviderObjectSettingGUI($this->test_object->getRefId());
672  if ($lti_settings->hasSettingsAccess()) {
673  $this->tabs->addSubTabTarget(
674  'lti_provider',
675  $this->ctrl->getLinkTargetByClass(\ilLTIProviderObjectSettingGUI::class),
676  '',
677  [\ilLTIProviderObjectSettingGUI::class]
678  );
679  }
680  }
681 
682  protected function needsParticipantsTab(): bool
683  {
684  if (!$this->checkParticipantsTabAccess()) {
685  return false;
686  }
687 
688  return true;
689  }
690 
691  protected function needsTimeExtensionSubTab(): bool
692  {
693  if (!($this->test_object->getProcessingTimeInSeconds() > 0)) {
694  return false;
695  }
696 
697  if ($this->test_object->getNrOfTries() != 1) {
698  return false;
699  }
700 
701  return true;
702  }
703 
704  protected function getParticipantsTabTarget(): string
705  {
706  return $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, \ilTestParticipantsGUI::class]);
707  }
708 
709  public function needsYourResultsTab(): bool
710  {
711  return $this->test_session->reportableResultsAvailable($this->test_object)
712  || $this->test_session->getActiveId() !== 0
713  && $this->test_object->canShowSolutionPrintview($this->test_session->getUserId());
714  }
715 
716  protected function getYourResultsTabTarget(): string
717  {
718  if ($this->needsLoResultsSubTab()) {
719  return $this->ctrl->getLinkTargetByClass([\ilObjTestGUI::class, \ilTestResultsGUI::class, \ilTestEvalObjectiveOrientedGUI::class]);
720  }
721 
722  if ($this->needsYourSolutionsSubTab()) {
723  return $this->ctrl->getLinkTargetByClass([\ilTestResultsGUI::class, \ilMyTestSolutionsGUI::class, \ilTestEvaluationGUI::class]);
724  }
725 
726  return $this->ctrl->getLinkTargetByClass([\ilTestResultsGUI::class, \ilMyTestResultsGUI::class, \ilTestEvaluationGUI::class]);
727  }
728 
729  protected function needsYourResultsSubTab(): bool
730  {
731  return $this->test_object->isScoreReportingEnabled();
732  }
733 
734  public function needsLoResultsSubTab(): bool
735  {
736  if (!$this->test_object->isScoreReportingEnabled()) {
737  return false;
738  }
739 
740  return $this->objective_parent->isObjectiveOrientedPresentationRequired();
741  }
742 
743  public function needsHighSoreSubTab(): bool
744  {
745  if (!$this->test_object->isScoreReportingEnabled()) {
746  return false;
747  }
748 
749  return $this->test_object->getHighscoreEnabled();
750  }
751 
752  public function needsSkillResultsSubTab(): bool
753  {
754  if (!$this->test_object->isScoreReportingEnabled()) {
755  return false;
756  }
757 
758  return $this->test_object->isSkillServiceToBeConsidered();
759  }
760 
761  public function needsYourSolutionsSubTab(): bool
762  {
763  return $this->test_object->canShowSolutionPrintview($this->test_session->getUserId());
764  }
765 
766  public function getYourResultsSubTabs(): void
767  {
768  if ($this->needsLoResultsSubTab()) {
769  $this->tabs->addSubTab(
770  self::SUBTAB_ID_LO_RESULTS,
771  $this->lng->txt('tst_tab_results_objective_oriented'),
772  $this->ctrl->getLinkTargetByClass([\ilTestResultsGUI::class, \ilTestEvalObjectiveOrientedGUI::class])
773  );
774  }
775 
776  if ($this->needsYourResultsSubTab()) {
777  $myResultsLabel = $this->lng->txt('tst_show_results');
778 
779  if ($this->needsLoResultsSubTab()) {
780  $myResultsLabel = $this->lng->txt('tst_tab_results_pass_oriented');
781  }
782 
783  $this->tabs->addSubTab(
784  self::SUBTAB_ID_MY_RESULTS,
785  $myResultsLabel,
786  $this->ctrl->getLinkTargetByClass([\ilTestResultsGUI::class, \ilMyTestResultsGUI::class, \ilTestEvaluationGUI::class])
787  );
788  }
789 
790  if ($this->needsSkillResultsSubTab()) {
791  $this->tabs->addSubTab(
792  self::SUBTAB_ID_SKILL_RESULTS,
793  $this->lng->txt('tst_show_comp_results'),
794  $this->ctrl->getLinkTargetByClass([\ilTestResultsGUI::class, \ilTestSkillEvaluationGUI::class])
795  );
796  }
797 
798  if ($this->needsHighSoreSubTab()) {
799  $this->tabs->addSubTab(
800  self::SUBTAB_ID_HIGHSCORE,
801  $this->lng->txt('tst_show_toplist'),
802  $this->ctrl->getLinkTargetByClass([\ilTestResultsGUI::class, \ilTestToplistGUI::class], 'outResultsToplist')
803  );
804  }
805 
806  if ($this->needsYourSolutionsSubTab()) {
807  $this->tabs->addSubTab(
808  self::SUBTAB_ID_MY_SOLUTIONS,
809  $this->lng->txt('tst_list_of_answers_show'),
810  $this->ctrl->getLinkTargetByClass([\ilTestResultsGUI::class, \ilMyTestSolutionsGUI::class, \ilTestEvaluationGUI::class])
811  );
812  }
813  }
814 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setParentBackLabel(?string $parent_back_label)
__construct(private readonly \ilTabsGUI $tabs, private readonly \ilLanguage $lng, private readonly \ilCtrlInterface $ctrl, private readonly \ilAccess $access, private readonly \ilTestAccess $test_access, private readonly \ilObjTest $test_object, private readonly \ilTestObjectiveOrientedContainer $objective_parent, private readonly \ilTestSession $test_session)
Definition: TabsManager.php:79
resetTabsAndAddBacklink(string $back_link_target)
activateSubTab(string $sub_tab_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const TAB_ID_QUESTIONS
(Sub-)Tab ID constants
Definition: TabsManager.php:38
global $lng
Definition: privfeed.php:31
setParentBackHref(?string $parent_back_href)