ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjTestFolderGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
29 
35 {
36  private const SHOW_LOGS_CMD = 'logs';
37 
40 
42 
44 
45  public function __construct(
46  $a_data,
47  int $a_id = 0,
48  bool $a_call_by_reference = true,
49  bool $a_prepare_output = true
50  ) {
51  global $DIC;
52  $rbacsystem = $DIC['rbacsystem'];
53  $this->data_factory = new DataFactory();
54 
55  $local_dic = TestDIC::dic();
56  $this->testrequest = $local_dic['request_data_collector'];
57  $this->log_viewer = $local_dic['logging.viewer'];
58  $this->questionrepository = $local_dic['question.general_properties.repository'];
59 
60  $this->type = 'assf';
61 
62  parent::__construct($a_data, $a_id, $a_call_by_reference, false);
63 
64  if (!$rbacsystem->checkAccess('read', $this->object->getRefId())) {
65  $this->ilias->raiseError($this->lng->txt("msg_no_perm_read_assf"), $this->ilias->error_obj->WARNING);
66  }
67 
68  $this->lng->loadLanguageModule('assessment');
69  }
70 
71  private function getTestFolder(): ilObjTestFolder
72  {
74  return $this->object;
75  }
76 
77  public function executeCommand(): void
78  {
79  $next_class = $this->ctrl->getNextClass($this);
80  $cmd = $this->ctrl->getCmd();
81  $this->prepareOutput();
82 
83  switch ($next_class) {
84  case 'ilpermissiongui':
85  $this->tabs_gui->activateTab('perm_settings');
86  $perm_gui = new \ilPermissionGUI($this);
87  $this->ctrl->forwardCommand($perm_gui);
88  break;
89  case 'ilglobalunitconfigurationgui':
90  if (!$this->rbac_system->checkAccess('visible,read', $this->getTestFolder()->getRefId())) {
91  $this->ilias->raiseError($this->lng->txt('permission_denied'), $this->ilias->error_obj->WARNING);
92  }
93 
94  $this->tabs_gui->setTabActive('units');
95 
96  $gui = new \ilGlobalUnitConfigurationGUI(
98  );
99  $this->ctrl->forwardCommand($gui);
100  break;
101 
102  default:
103  if ($cmd === null || $cmd === '' || $cmd === 'view') {
104  $cmd = 'showGlobalSettings';
105  }
106  $cmd .= 'Object';
107  $this->$cmd();
108 
109  break;
110  }
111  }
112 
113  public function showGlobalSettingsObject(?Form $form = null): void
114  {
115  $this->tabs_gui->setTabActive('settings');
116 
117  if ($form === null) {
118  $form = $this->buildGlobalSettingsForm();
119  }
120 
121  $this->tpl->setContent($this->ui_renderer->render($form));
122  }
123 
124  private function buildGlobalSettingsForm(): Form
125  {
126  $inputs = $this->getTestFolder()->getGlobalSettingsRepository()->getGlobalSettings()->toForm(
127  $this->ui_factory,
128  $this->refinery,
129  $this->lng
130  );
131 
132  return $this->ui_factory->input()->container()->form()->standard(
133  $this->ctrl->getFormActionByClass(self::class, 'SaveGlobalSettings'),
134  $inputs
135  );
136  }
137 
141  public function saveGlobalSettingsObject(): void
142  {
143  if (!$this->access->checkAccess('write', '', $this->getTestFolder()->getRefId())) {
144  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('no_permission'));
145  $this->showGlobalSettingsObject();
146  return;
147  }
148 
149  $form = $this->buildGlobalSettingsForm()->withRequest($this->request);
150  $data = $form->getData();
151  if ($data === null) {
152  $this->showGlobalSettingsObject($form);
153  return;
154  }
155 
156  $this->getTestFolder()->getGlobalSettingsRepository()
157  ->storeGlobalSettings($data['global_settings']);
158 
159  $this->showGlobalSettingsObject($form);
160  }
161 
162  public function exportLegacyLogsObject(): void
163  {
164  $csv_output = $this->getTestFolder()->getTestLogViewer()->getLegacyLogExportForObjId();
165 
167  $csv_output,
168  'legacy_logs.csv'
169  );
170  }
171 
172  protected function showLogSettingsObject(?Form $form = null): void
173  {
174  $this->tabs_gui->activateTab('logs');
175 
176  if ($form === null) {
177  $form = $this->buildLogSettingsForm();
178  }
179 
180  $this->tpl->setContent($this->ui_renderer->render($form));
181  }
182 
183  protected function saveLogSettingsObject(): void
184  {
185  if (!$this->access->checkAccess('write', '', $this->getTestFolder()->getRefId())) {
186  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('no_permission'));
187  $this->showLogSettingsObject();
188  return;
189  }
190 
191  $form = $this->buildLogSettingsForm()->withRequest($this->request);
192  $data = $form->getData();
193  if ($data === null) {
194  $this->showLogSettingsObject($form);
195  return;
196  }
197 
198  $this->getTestFolder()->getGlobalSettingsRepository()
199  ->storeLoggingSettings($data['logging']);
200 
201  $this->showLogSettingsObject($form);
202  }
203 
204  protected function buildLogSettingsForm(): Form
205  {
206  $inputs = $this->getTestFolder()->getGlobalSettingsRepository()->getLoggingSettings()->toForm(
207  $this->ui_factory,
208  $this->refinery,
209  $this->lng
210  );
211 
212  return $this->ui_factory->input()->container()->form()->standard(
213  $this->ctrl->getFormActionByClass(self::class, 'saveLogSettings'),
214  $inputs
215  );
216  }
217 
218  public function logsObject(): void
219  {
220  $this->tabs_gui->activateTab('logs');
221  $this->toolbar->addComponent(
222  $this->ui_factory->button()->standard(
223  $this->lng->txt('export_legacy_logs'),
224  $this->ctrl->getLinkTargetByClass(self::class, 'exportLegacyLogs')
225  )
226  );
227  $here_uri = $this->data_factory->uri(ILIAS_HTTP_PATH
228  . '/' . $this->ctrl->getLinkTargetByClass(self::class, self::SHOW_LOGS_CMD));
229  list($url_builder, $action_parameter_token, $row_id_token) = (new URLBuilder($here_uri))->acquireParameters(
230  LogTable::QUERY_PARAMETER_NAME_SPACE,
231  LogTable::ACTION_TOKEN_STRING,
232  LogTable::ENTRY_TOKEN_STRING
233  );
234 
235  if ($this->request_wrapper->has($action_parameter_token->getName())) {
236  $this->object->getTestLogViewer()->executeLogTableAction(
237  $url_builder,
238  $action_parameter_token,
239  $row_id_token
240  );
241  }
242 
243  $table_gui = $this->log_viewer->getLogTable(
244  $url_builder,
245  $action_parameter_token,
246  $row_id_token
247  );
248  $this->tpl->setVariable('ADM_CONTENT', $this->ui_renderer->render($table_gui));
249  }
250 
251  public function getAdminTabs(): void
252  {
253  $this->getTabs();
254  }
255 
256  public function getLogdataSubtabs(): void
257  {
258  $this->tabs_gui->addSubTabTarget(
259  'settings',
260  $this->ctrl->getLinkTarget($this, 'showLogSettings'),
261  ['saveLogSettings', 'showLogSettings'],
262  ''
263  );
264 
265  // log output
266  $this->tabs_gui->addSubTabTarget(
267  'logs_output',
268  $this->ctrl->getLinkTargetByClass(self::class, self::SHOW_LOGS_CMD),
269  [self::SHOW_LOGS_CMD],
270  ''
271  );
272  }
273 
274  protected function getTabs(): void
275  {
276  if (in_array($this->ctrl->getCmd(), ['saveLogSettings', 'showLogSettings', self::SHOW_LOGS_CMD])) {
277  $this->getLogdataSubtabs();
278  }
279 
280  if ($this->rbac_system->checkAccess('visible,read', $this->getTestFolder()->getRefId())) {
281  $this->tabs_gui->addTarget(
282  'settings',
283  $this->ctrl->getLinkTarget($this, 'showGlobalSettings'),
284  ['showGlobalSettings', 'settings', '', 'view'],
285  '',
286  ''
287  );
288 
289  $this->tabs_gui->addTarget(
290  'logs',
291  $this->ctrl->getLinkTarget($this, "showLogSettings"),
292  ['saveLogSettings', 'showLogSettings', self::SHOW_LOGS_CMD, 'showLog', 'exportLog', 'logAdmin', 'deleteLog'],
293  '',
294  ''
295  );
296 
297  $this->tabs_gui->addTarget(
298  'units',
299  $this->ctrl->getLinkTargetByClass('ilGlobalUnitConfigurationGUI', ''),
300  '',
301  'ilglobalunitconfigurationgui'
302  );
303  }
304 
305  if ($this->rbac_system->checkAccess('edit_permission', $this->getTestFolder()->getRefId())) {
306  $this->tabs_gui->addTarget(
307  "perm_settings",
308  $this->ctrl->getLinkTargetByClass([get_class($this), 'ilpermissiongui'], "perm"),
309  ["perm", "info", "owner"],
310  'ilpermissiongui'
311  );
312  }
313  }
314 }
saveGlobalSettingsObject()
Save Assessment settings.
This describes commonalities between all forms.
Definition: Form.php:32
showLogSettingsObject(?Form $form=null)
prepareOutput(bool $show_sub_objects=true)
__construct( $a_data, int $a_id=0, bool $a_call_by_reference=true, bool $a_prepare_output=true)
Class ilUnitConfigurationRepository.
RequestDataCollector $testrequest
static deliverData(string $a_data, string $a_filename, string $mime="application/octet-stream")
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
GeneralQuestionPropertiesRepository $questionrepository
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
Class ilObjForumAdministration.
Class ilObjTestFolder.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
showGlobalSettingsObject(?Form $form=null)
URLBuilder.
Definition: URLBuilder.php:40