ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.InfoScreenGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
35 {
36  protected \ILIAS\Survey\InternalGUIService $gui;
37  protected \ILIAS\DI\UIServices $ui;
38  protected \ilObjSurvey $survey;
39  protected \ilObjUser $user;
40  protected \ilToolbarGUI $toolbar;
41  protected \ilObjSurveyGUI $survey_gui;
46  protected string $requested_code;
47  protected \ILIAS\Survey\Mode\FeatureConfig $feature_config;
48  protected \ilLanguage $lng;
49  protected \ilCtrl $ctrl;
50  private \ilGlobalTemplateInterface $main_tpl;
51 
52  public function __construct(
53  \ilObjSurveyGUI $survey_gui,
54  \ilToolbarGUI $toolbar,
55  \ilObjUser $user,
56  \ilLanguage $lng,
57  \ilCtrl $ctrl,
58  ServerRequestInterface $request,
59  InternalDomainService $domain_service
60  ) {
61  global $DIC;
62  $this->main_tpl = $DIC->ui()->mainTemplate();
63  $this->user = $user;
64  $this->toolbar = $toolbar;
65  $this->survey_gui = $survey_gui;
66  $this->ui = $DIC->ui();
68  $survey = $survey_gui->getObject();
69  $this->survey = $survey;
70  $this->status_manager = $domain_service->participants()->status($this->survey, $user->getId());
71  $this->access_manager = $domain_service->access($this->survey->getRefId(), $user->getId());
72  $this->run_manager = $domain_service->execution()->run($this->survey, $user->getId());
73  $this->feature_config = $domain_service->modeFeatureConfig($this->survey->getMode());
74 
75  $this->lng = $lng;
76  $this->ctrl = $ctrl;
77 
78  $body = $request->getParsedBody();
79  $this->requested_code = (string) ($body["anonymous_id"] ?? "");
80  $this->gui = $DIC->survey()->internal()->gui();
81  }
82 
83  public function getInfoScreenGUI(): \ilInfoScreenGUI
84  {
85  $survey = $this->survey;
86 
87  $info = new \ilInfoScreenGUI($this->survey_gui);
88  $info->enablePrivateNotes();
89 
90 
91  $info->addMetaDataSections($survey->getId(), 0, $survey->getType());
92 
93  return $info;
94  }
95 
96 
97 }
Info screen wrapper for the survey.
ilObjSurveyGUI: ilSurveyEvaluationGUI, ilSurveyExecutionGUI ilObjSurveyGUI: ilObjectMetaDataGUI, ilPermissionGUI ilObjSurveyGUI: ilInfoScreenGUI, ilObjectCopyGUI ilObjSurveyGUI: ilSurveySkillDeterminationGUI ilObjSurveyGUI: ilCommonActionDispatcherGUI, ilSurveySkillGUI ilObjSurveyGUI: ilSurveyEditorGUI, ilSurveyConstraintsGUI ilObjSurveyGUI: ilSurveyParticipantsGUI, ilLearningProgressGUI ilObjSurveyGUI: ilExportGUI, ilLTIProviderObjectSettingGUI ilObjSurveyGUI: ILIAS
__construct()
Constructor setup ILIAS global object public.
Definition: class.ilias.php:76
global $DIC
Definition: shib_login.php:22
ILIAS Survey Mode FeatureConfig $feature_config
Survey Run Note: The manager should get the current user id passed.
Participants StatusManager $status_manager
ILIAS Survey InternalGUIService $gui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...