ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjDashboardSettingsGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 
35 {
36  public const VIEW_MODE_SETTINGS = 'Settings';
37  public const VIEW_MODE_PRESENTATION = 'Presentation';
38  public const VIEW_MODE_SORTING = 'Sorting';
39  public const DASH_SORT_PREFIX = 'dash_sort_by_';
40  public const DASH_ENABLE_PREFIX = 'dash_enable_';
41 
42  protected Factory $ui_factory;
45  protected UIServices $ui;
48 
49  public function __construct(
50  $a_data,
51  int $a_id,
52  bool $a_call_by_reference = true,
53  bool $a_prepare_output = true
54  ) {
55  global $DIC;
56 
57  $this->lng = $DIC->language();
58  $this->rbac_system = $DIC->rbac()->system();
59  $this->access = $DIC->access();
60  $this->ctrl = $DIC->ctrl();
61  $this->settings = $DIC->settings();
62  $lng = $DIC->language();
63  $this->ui_factory = $DIC->ui()->factory();
64  $this->ui_renderer = $DIC->ui()->renderer();
65  $this->request = $DIC->http()->request();
66  $this->ui = $DIC->ui();
67  $this->style_gui = $DIC->contentStyle()->gui();
68 
69  $this->type = 'dshs';
70  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
71 
72  $lng->loadLanguageModule('dash');
73 
74  $this->viewSettings = new ilPDSelectedItemsBlockViewSettings($DIC->user());
75 
76  $this->side_panel_settings = new ilDashboardSidePanelSettingsRepository();
77  }
78 
79  public function executeCommand(): void
80  {
81  $cmd = $this->ctrl->getCmd();
82 
83  $this->prepareOutput();
84 
85  if (!$this->rbac_system->checkAccess('visible,read', $this->object->getRefId())) {
86  throw new ilPermissionException($this->lng->txt('no_permission'));
87  }
88 
89  switch ($this->ctrl->getNextClass($this)) {
90  case strtolower(ilPermissionGUI::class):
91  $this->tabs_gui->activateTab('perm_settings');
92  $perm_gui = new ilPermissionGUI($this);
93  $this->ctrl->forwardCommand($perm_gui);
94  break;
95  case strtolower(ilDashboardPageLanguageSelectGUI::class):
96  $this->tabs_gui->activateTab('dash_customization');
97  $this->ctrl->forwardCommand(new ilDashboardPageLanguageSelectGUI());
98  break;
99  case strtolower(ilObjectContentStyleSettingsGUI::class):
100  $this->tabs_gui->clearTargets();
101  $this->ctrl->setParameterByClass(ilDashboardPageGUI::class, 'dshs_lang', $this->request->getQueryParams()['dshs_lang']);
102  $this->tabs_gui->setBackTarget($this->lng->txt('back'), $this->ctrl->getLinkTargetByClass(
103  [ilDashboardPageLanguageSelectGUI::class, ilDashboardPageGUI::class],
104  'edit'
105  ));
106  $gui = $this->style_gui->objectSettingsGUIForRefId(null, $this->getRefId());
107  $this->ctrl->setParameter($gui, 'dshs_lang', $this->request->getQueryParams()['dshs_lang']);
108  $this->ctrl->forwardCommand($gui);
109  break;
110  default:
111  $this->tabs_gui->activateTab('settings');
112  if (!$cmd || $cmd === 'view') {
113  $cmd = 'editSettings';
114  }
115 
116  $this->$cmd();
117  break;
118  }
119  }
120 
121  public function getAdminTabs(): void
122  {
123  if ($this->rbac_system->checkAccess('visible,read', $this->object->getRefId())) {
124  $this->tabs_gui->addTarget(
125  'settings',
126  $this->ctrl->getLinkTarget($this, 'editSettings'),
127  ['editSettings', 'view']
128  );
129  $this->tabs_gui->addTarget(
130  'dash_customization',
131  $this->ctrl->getLinkTargetByClass(ilDashboardPageLanguageSelectGUI::class)
132  );
133  }
134 
135  if ($this->rbac_system->checkAccess('edit_permission', $this->object->getRefId())) {
136  $this->tabs_gui->addTarget(
137  'perm_settings',
138  $this->ctrl->getLinkTargetByClass(ilPermissionGUI::class, 'perm'),
139  [],
140  ilPermissionGUI::class
141  );
142  }
143  }
144 
145  public function editSettings(): void
146  {
147  if ($this->settings->get('rep_favourites', '0') !== '1') {
148  $content[] = $this->ui_factory->messageBox()->info($this->lng->txt('favourites_disabled_info'));
149  }
150 
151  if ($this->settings->get('mmbr_my_crs_grp', '0') !== '1') {
152  $content[] = $this->ui_factory->messageBox()->info($this->lng->txt('memberships_disabled_info'));
153  }
154  $this->setSettingsSubTabs('general');
155  $table = new ilDashboardSortationTableGUI($this, 'editSettings', !$this->canWrite());
156  $this->tpl->setContent($table->getHTML());
157  }
158 
159  public function editSorting(): void
160  {
161  $this->tabs_gui->activateTab('settings');
162  $this->setSettingsSubTabs('sorting');
163  $form = $this->getViewForm(self::VIEW_MODE_SORTING);
164  $this->tpl->setContent($this->ui->renderer()->renderAsync($form));
165  }
166 
167  public function getViewForm(string $mode): ?StandardForm
168  {
169  switch ($mode) {
170  case self::VIEW_MODE_PRESENTATION:
171  case self::VIEW_MODE_SORTING:
172  return $this->ui_factory->input()->container()->form()->standard(
173  $this->ctrl->getFormAction($this, 'save' . $mode),
174  array_map(
175  fn(int $view): Section => $this->getViewByMode($mode, $view),
176  $this->viewSettings->getPresentationViews()
177  )
178  );
179  }
180  return null;
181  }
182 
183  public function getViewSectionSorting(int $view, string $title): Section
184  {
185  if ($this->canWrite()) {
186  $this->tpl->addJavaScript("assets/js/SortationUserInputHandler.js");
187  }
188  $lng = $this->lng;
189  $availabe_sort_options = $this->viewSettings->getAvailableSortOptionsByView($view);
190  $options = array_reduce(
191  $availabe_sort_options,
192  static function (array $options, string $option) use ($lng): array {
193  $options[$option] = $lng->txt(self::DASH_SORT_PREFIX . $option);
194  return $options;
195  },
196  []
197  );
198 
199  $available_sorting = $this->ui_factory
200  ->input()
201  ->field()
202  ->multiSelect($this->lng->txt('dash_avail_sortation'), $options)
203  ->withValue(
204  $this->viewSettings->getActiveSortingsByView($view)
205  )
207  static fn(string $id) => "document.getElementById('$id').setAttribute('data-checkbox', 'activeSorting$view');
208  document.addEventListener('DOMContentLoaded', function () {
209  il.Dashboard.handleUserInputForSortationsByView($view);
210  });"
211  );
212  $default_sorting = $this->ui_factory
213  ->input()
214  ->field()
215  ->select($this->lng->txt('dash_default_sortation'), $options)
216  ->withValue($this->viewSettings->getDefaultSortingByView($view))
217  ->withRequired(true)
218  ->withAdditionalOnLoadCode(
219  static fn(string $id) => "document.getElementById('$id').setAttribute('data-select', 'sorting$view');"
220  );
221  return $this->ui_factory->input()->field()->section(
222  $this->maybeDisable(['avail_sorting' => $available_sorting, 'default_sorting' => $default_sorting]),
223  $title
224  );
225  }
226 
227  public function getViewByMode(string $mode, int $view): Section
228  {
229  switch ($mode) {
230  case self::VIEW_MODE_SORTING:
231  return $this->getViewSectionSorting(
232  $view,
233  $this->lng->txt('dash_' . $this->viewSettings->getViewName($view))
234  );
235  case self::VIEW_MODE_PRESENTATION:
236  default:
237  return $this->getViewSectionPresentation(
238  $view,
239  $this->lng->txt('dash_' . $this->viewSettings->getViewName($view))
240  );
241  }
242  }
243 
244  public function saveSettings(): void
245  {
246  if ($this->canWrite()) {
247  $form_data = $this->request->getParsedBody();
248  foreach ($this->viewSettings->getPresentationViews() as $presentation_view) {
249  if (isset($form_data['main_panel']['enable'][$presentation_view])) {
250  $this->viewSettings->enableView(
251  $presentation_view,
252  (bool) $form_data['main_panel']['enable'][$presentation_view]
253  );
254  } elseif ($presentation_view !== ilPDSelectedItemsBlockConstants::VIEW_RECOMMENDED_CONTENT) {
255  $this->viewSettings->enableView($presentation_view, false);
256  }
257  }
258 
259  $positions = $form_data['main_panel']['position'];
260  asort($positions);
261  $this->viewSettings->setViewPositions(array_keys($positions));
262 
263  foreach ($this->side_panel_settings->getValidModules() as $mod) {
264  $this->side_panel_settings->enable($mod, (bool) ($form_data['side_panel']['enable'][$mod] ?? false));
265  }
266 
267  $positions = $form_data['side_panel']['position'];
268  asort($positions);
269  $this->side_panel_settings->setPositions(array_keys($positions));
270 
271  $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_SUCCESS, $this->lng->txt('settings_saved'), true);
272  } else {
273  $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_FAILURE, $this->lng->txt('no_permission'), true);
274  }
275  $this->editSettings();
276  }
277 
278  public function setSettingsSubTabs(string $a_active): void
279  {
280  $tabs = $this->tabs_gui;
281  $ctrl = $this->ctrl;
282  $lng = $this->lng;
283 
284  if ($this->rbac_system->checkAccess('visible,read', $this->object->getRefId())) {
285  $tabs->addSubTab(
286  'general',
287  $lng->txt('general_settings'),
288  $ctrl->getLinkTarget($this, 'editSettings')
289  );
290 
291  $tabs->addSubTab(
292  'presentation',
293  $lng->txt('dash_presentation'),
294  $ctrl->getLinkTarget($this, 'editPresentation')
295  );
296 
297  $tabs->addSubTab(
298  'sorting',
299  $lng->txt('dash_sortation'),
300  $ctrl->getLinkTarget($this, 'editSorting')
301  );
302  }
303 
304  $tabs->activateSubTab($a_active);
305  }
306 
307  public function editPresentation(): void
308  {
309  $this->tabs_gui->activateTab('settings');
310  $this->setSettingsSubTabs('presentation');
311 
312  $form = $this->getViewForm(self::VIEW_MODE_PRESENTATION);
313 
314  $this->tpl->setContent($this->ui->renderer()->renderAsync($form));
315  }
316 
317  public function editCustomization(): void
318  {
319  $this->ui->mainTemplate()->setOnScreenMessage(
320  $this->ui->mainTemplate()::MESSAGE_TYPE_INFO,
321  $this->lng->txt('dash_page_edit_info'),
322  true
323  );
324 
325  $this->tabs_gui->activateTab('dash_customization');
326 
327  $content = $this->ui->renderer()->render(
328  $this->ui->factory()->button()->standard(
329  $this->lng->txt('customize_page'),
330  $this->ctrl->getLinkTargetByClass([self::class, ilDashboardPageLanguageSelectGUI::class], 'select')
331  )
332  );
333 
334  if (ilDashboardPageGUI::isLanguageAvailable($this->user->getLanguage())) {
335  $content .= (new ilDashboardPageGUI($this->user->getLanguage()))->showPage();
336  } elseif (ilDashboardPageGUI::isLanguageAvailable($this->lng->getContentLanguage())) {
337  $content .= (new ilDashboardPageGUI($this->lng->getDefaultLanguage()))->showPage();
338  }
339 
340  $this->tpl->setContent($content);
341  }
342 
343  public function getViewSectionPresentation(int $view, string $title): Section
344  {
345  $lng = $this->lng;
346  $ops = $this->viewSettings->getAvailablePresentationsByView($view);
347  $pres_options = array_column(
348  array_map(
349  static fn(int $k, string $v): array => [$v, $lng->txt('dash_' . $v)],
350  array_keys($ops),
351  $ops
352  ),
353  1,
354  0
355  );
356  $avail_pres = $this->ui_factory->input()->field()->multiSelect(
357  $lng->txt('dash_avail_presentation'),
358  $pres_options
359  )
360  ->withValue($this->viewSettings->getActivePresentationsByView($view));
361  $default_pres = $this->ui_factory->input()->field()->radio($lng->txt('dash_default_presentation'))
362  ->withOption('list', $lng->txt('dash_list'))
363  ->withOption('tile', $lng->txt('dash_tile'));
364  $default_pres = $default_pres->withValue($this->viewSettings->getDefaultPresentationByView($view));
365  return $this->ui_factory->input()->field()->section(
366  $this->maybeDisable(['avail_pres' => $avail_pres, 'default_pres' => $default_pres]),
367  $title
368  );
369  }
370 
371  protected function savePresentation(): void
372  {
373  if ($this->canWrite()) {
374  $data = $this->getViewForm(self::VIEW_MODE_PRESENTATION)->withRequest($this->request)->getData();
375 
376  foreach ($data as $view => $view_data) {
377  $this->viewSettings->storeViewPresentation(
378  $view,
379  $view_data['default_pres'],
380  $view_data['avail_pres'] ?? []
381  );
382  }
383  $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_SUCCESS, $this->lng->txt('msg_obj_modified'), true);
384  } else {
385  $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_FAILURE, $this->lng->txt('no_permission'), true);
386  }
387  $this->editPresentation();
388  }
389 
390  public function saveSorting(): void
391  {
392  if ($this->canWrite()) {
393  $data = $this->getViewForm(self::VIEW_MODE_SORTING)->withRequest($this->request)->getData();
394 
395  foreach ($data as $view => $view_data) {
396  if (isset($view_data['default_sorting'])) {
397  if (!is_array($view_data['avail_sorting'] ?? null)) {
398  $view_data['avail_sorting'] = [$view_data['default_sorting']];
399  }
400  $this->viewSettings->storeViewSorting(
401  $view,
402  $view_data['default_sorting'],
403  $view_data['avail_sorting']
404  );
405  }
406  }
407  $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_SUCCESS, $this->lng->txt('msg_obj_modified'), true);
408  } else {
409  $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_FAILURE, $this->lng->txt('no_permission'), true);
410  }
411  $this->editSorting();
412  }
413 
418  private function maybeDisable(array $fields): array
419  {
420  if ($this->canWrite()) {
421  return $fields;
422  }
423 
424  return array_map(static fn(FormInput $field): FormInput => $field->withDisabled(true), $fields);
425  }
426 
427  private function canWrite(): bool
428  {
429  return $this->rbac_system->checkAccess('write', $this->object->getRefId());
430  }
431 }
ilTabsGUI $tabs_gui
ilDashboardSidePanelSettingsRepository $side_panel_settings
ilPDSelectedItemsBlockViewSettings $viewSettings
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
ilDashboardPageGUI: ilPageEditorGUI, ilEditClipboardGUI, ilMDEditorGUI ilDashboardPageGUI: ilAdminis...
prepareOutput(bool $show_sub_objects=true)
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
loadLanguageModule(string $a_module)
Load language module.
Facade for consumer gui interface.
__construct( $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
@ilCtrl_isCalledBy ilDashboardPageLanguageSelectGUI: ilObjDashboardSettingsGUI
getViewSectionPresentation(int $view, string $title)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilLanguage $lng
Provides fluid interface to RBAC services.
Definition: UIServices.php:24
This is how the factory for UI elements looks.
Definition: Factory.php:37
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
ilObjDashboardSettingsGUI: ilPermissionGUI ilObjDashboardSettingsGUI: ilDashboardPageLanguageSelectG...
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
__construct(Container $dic, ilPlugin $plugin)
getViewSectionSorting(int $view, string $title)
static isLanguageAvailable(string $lang)