ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPDSelectedItemsBlockViewSettings.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
25 {
27  protected static array $availableViews = [
28  self::VIEW_SELECTED_ITEMS,
29  self::VIEW_RECOMMENDED_CONTENT,
30  self::VIEW_MY_MEMBERSHIPS,
31  self::VIEW_LEARNING_SEQUENCES,
32  self::VIEW_MY_STUDYPROGRAMME,
33  ];
35  protected static array $viewNames = [
36  self::VIEW_SELECTED_ITEMS => 'favourites',
37  self::VIEW_RECOMMENDED_CONTENT => 'recommended_content',
38  self::VIEW_MY_MEMBERSHIPS => 'memberships',
39  self::VIEW_LEARNING_SEQUENCES => 'learning_sequences',
40  self::VIEW_MY_STUDYPROGRAMME => 'study_programmes',
41  ];
43  protected static array $availablePresentations = [
44  self::PRESENTATION_LIST,
45  self::PRESENTATION_TILE
46  ];
48  protected static array $availableSortOptions = [
49  self::SORT_BY_LOCATION,
50  self::SORT_BY_TYPE,
51  self::SORT_BY_START_DATE,
52  self::SORT_BY_ALPHABET,
53  ];
55  protected static array $availableSortOptionsByView = [
56  self::VIEW_SELECTED_ITEMS => [
57  self::SORT_BY_LOCATION,
58  self::SORT_BY_TYPE,
59  self::SORT_BY_ALPHABET,
60  ],
61  self::VIEW_RECOMMENDED_CONTENT => [
62  self::SORT_BY_LOCATION,
63  self::SORT_BY_TYPE,
64  self::SORT_BY_ALPHABET,
65  ],
66  self::VIEW_MY_MEMBERSHIPS => [
67  self::SORT_BY_LOCATION,
68  self::SORT_BY_TYPE,
69  self::SORT_BY_ALPHABET,
70  self::SORT_BY_START_DATE,
71  ],
72  self::VIEW_LEARNING_SEQUENCES => [
73  self::SORT_BY_LOCATION,
74  self::SORT_BY_ALPHABET,
75  ],
76  self::VIEW_MY_STUDYPROGRAMME => [
77  self::SORT_BY_LOCATION,
78  self::SORT_BY_ALPHABET,
79  ],
80  ];
82  protected static array $availablePresentationsByView = [
83  self::VIEW_SELECTED_ITEMS => [
84  self::PRESENTATION_LIST,
85  self::PRESENTATION_TILE
86  ],
87  self::VIEW_RECOMMENDED_CONTENT => [
88  self::PRESENTATION_LIST,
89  self::PRESENTATION_TILE
90  ],
91  self::VIEW_MY_MEMBERSHIPS => [
92  self::PRESENTATION_LIST,
93  self::PRESENTATION_TILE
94  ],
95  self::VIEW_LEARNING_SEQUENCES => [
96  self::PRESENTATION_LIST,
97  self::PRESENTATION_TILE
98  ],
99  self::VIEW_MY_STUDYPROGRAMME => [
100  self::PRESENTATION_LIST,
101  self::PRESENTATION_TILE
102  ],
103 
104  ];
105  protected Setting $settings;
106  protected ilObjUser $actor;
107  protected array $validViews = [];
108  protected int $currentView = self::VIEW_SELECTED_ITEMS;
109  protected string $currentSortOption = self::SORT_BY_LOCATION;
110  protected string $currentPresentationOption = self::PRESENTATION_LIST;
112 
113  public function __construct(
114  ilObjUser $actor,
115  int $view = self::VIEW_SELECTED_ITEMS,
116  ?Setting $settings = null,
117  ?DashboardAccess $access = null
118  ) {
119  global $DIC;
120 
121  $this->settings = $settings ?? $DIC->settings();
122 
123  $this->actor = $actor;
124  $this->currentView = $view;
125  $this->access = $access ?? new DashboardAccess();
126  }
127 
128  public function getMembershipsView(): int
129  {
130  return self::VIEW_MY_MEMBERSHIPS;
131  }
132 
133  public function getSelectedItemsView(): int
134  {
135  return self::VIEW_SELECTED_ITEMS;
136  }
137 
138  public function getStudyProgrammeView(): int
139  {
140  return self::VIEW_MY_STUDYPROGRAMME;
141  }
142 
143  public function getLearningSequenceView(): int
144  {
145  return self::VIEW_LEARNING_SEQUENCES;
146  }
147 
148  public function getRecommendedContentView(): int
149  {
150  return self::VIEW_RECOMMENDED_CONTENT;
151  }
152 
153  public function getListPresentationMode(): string
154  {
155  return self::PRESENTATION_LIST;
156  }
157 
158  public function getTilePresentationMode(): string
159  {
160  return self::PRESENTATION_TILE;
161  }
162 
163  public function isMembershipsViewActive(): bool
164  {
165  return $this->currentView === $this->getMembershipsView();
166  }
167 
168  public function isRecommendedContentViewActive(): bool
169  {
170  return $this->currentView === self::VIEW_RECOMMENDED_CONTENT;
171  }
172 
173  public function isSelectedItemsViewActive(): bool
174  {
175  return $this->currentView === $this->getSelectedItemsView();
176  }
177 
178  public function isStudyProgrammeViewActive(): bool
179  {
180  return $this->currentView === $this->getStudyProgrammeView();
181  }
182 
183  public function isLearningSequenceViewActive(): bool
184  {
185  return $this->currentView === self::VIEW_LEARNING_SEQUENCES;
186  }
187 
188  public function getSortByStartDateMode(): string
189  {
190  return self::SORT_BY_START_DATE;
191  }
192 
193  public function getSortByLocationMode(): string
194  {
195  return self::SORT_BY_LOCATION;
196  }
197 
198  public function getSortByTypeMode(): string
199  {
200  return self::SORT_BY_TYPE;
201  }
202 
203  public function getSortByAlphabetMode(): string
204  {
205  return self::SORT_BY_ALPHABET;
206  }
207 
208  public function getAvailableSortOptionsByView(int $view): array
209  {
210  return self::$availableSortOptionsByView[$view] ?? [];
211  }
212 
213  public function getDefaultSortingByView(int $view): string
214  {
215  $sorting = $this->settings->get('pd_def_sort_view_' . $view, self::SORT_BY_LOCATION);
216  if (!in_array($sorting, $this->getAvailableSortOptionsByView($view), true)) {
217  return $this->getAvailableSortOptionsByView($view)[0];
218  }
219  return $sorting;
220  }
221 
225  public function getPresentationViews(): array
226  {
227  return self::$availableViews;
228  }
229 
233  public function getAvailablePresentationsByView(int $view): array
234  {
235  return self::$availablePresentationsByView[$view];
236  }
237 
238  public function storeViewSorting(int $view, string $type, array $active): void
239  {
240  if (!in_array($type, $active, true)) {
241  $active[] = $type;
242  }
243 
244  assert(in_array($type, $this->getAvailableSortOptionsByView($view), true));
245 
246  $this->settings->set('pd_def_sort_view_' . $view, $type);
247  $this->settings->set('pd_active_sort_view_' . $view, serialize($active));
248  }
249 
253  public function getActiveSortingsByView(int $view): array
254  {
255  $val = $this->settings->get('pd_active_sort_view_' . $view);
256  if ($val === '' || $val === null) {
257  $active_sortings = $this->getAvailableSortOptionsByView($view);
258  } else {
259  $active_sortings = unserialize($val, ['allowed_classes' => false]);
260  }
261  return array_filter(
262  $active_sortings,
263  fn(string $sorting): bool => in_array(
264  $sorting,
265  $this->getAvailableSortOptionsByView($view),
266  true
267  )
268  );
269  }
270 
274  public function storeViewPresentation(int $view, string $default, array $active): void
275  {
276  if (!in_array($default, $active, true)) {
277  $active[] = $default;
278  }
279  $this->settings->set('pd_def_pres_view_' . $view, $default);
280  $this->settings->set('pd_active_pres_view_' . $view, serialize($active));
281  }
282 
283  public function getDefaultPresentationByView(int $view): string
284  {
285  return $this->settings->get('pd_def_pres_view_' . $view, 'list');
286  }
287 
291  public function getActivePresentationsByView(int $view): array
292  {
293  $val = $this->settings->get('pd_active_pres_view_' . $view, '');
294 
295  return (!$val)
296  ? $this->getAvailablePresentationsByView($view)
297  : unserialize($val, ['allowed_classes' => false]);
298  }
299 
303  public function setViewPositions(array $positions): void
304  {
305  $this->settings->set('pd_view_positions', serialize($positions));
306  }
307 
311  public function getViewPositions(): array
312  {
313  $val = $this->settings->get('pd_view_positions', '');
314  return (!$val)
315  ? self::$availableViews
316  : unserialize($val, ['allowed_classes' => false]);
317  }
318 
319  public function isViewEnabled(int $view): bool
320  {
321  switch ($view) {
322  case $this->getMembershipsView():
323  return $this->enabledMemberships();
324  case $this->getSelectedItemsView():
325  return $this->enabledSelectedItems();
326  case $this->getStudyProgrammeView():
327  return $this->enabledStudyProgrammes();
328  case $this->getRecommendedContentView():
329  return $this->enabledRecommendedContent();
330  case $this->getLearningSequenceView():
331  return $this->enabledLearningSequences();
332  default:
333  return false;
334  }
335  }
336 
337  public function enableView(int $view, bool $status): void
338  {
339  switch ($view) {
340  case $this->getMembershipsView():
341  $this->enableMemberships($status);
342  break;
343  case $this->getSelectedItemsView():
344  $this->enableSelectedItems($status);
345  break;
346  case $this->getStudyProgrammeView():
347  $this->enableStudyProgrammes($status);
348  break;
349  case $this->getRecommendedContentView():
350  break;
351  case $this->getLearningSequenceView():
352  $this->enableLearningSequences($status);
353  break;
354  default:
355  throw new InvalidArgumentException('Unknown view: $view');
356  }
357  }
358 
359  public function enabledMemberships(): bool
360  {
361  return (int) $this->settings->get('disable_my_memberships', '0') === 0;
362  }
363 
364  public function enabledSelectedItems(): bool
365  {
366  return (int) $this->settings->get('disable_my_offers', '0') === 0;
367  }
368 
369  public function enableMemberships(bool $status): void
370  {
371  $this->settings->set('disable_my_memberships', $status ? '0' : '1');
372  }
373 
374  public function enableSelectedItems(bool $status): void
375  {
376  $this->settings->set('disable_my_offers', $status ? '0' : '1');
377  }
378 
379  public function allViewsEnabled(): bool
380  {
381  return $this->enabledMemberships() && $this->enabledSelectedItems();
382  }
383 
384  protected function allViewsDisabled(): bool
385  {
386  return !$this->enabledMemberships() && !$this->enabledSelectedItems();
387  }
388 
389  public function getDefaultView(): int
390  {
391  return (int) $this->settings->get('personal_items_default_view', (string) $this->getSelectedItemsView());
392  }
393 
394  public function storeDefaultView(int $view): void
395  {
396  $this->settings->set('personal_items_default_view', (string) $view);
397  }
398 
399  public function parse(): void
400  {
401  $this->validViews = self::$availableViews;
402 
403  $this->currentSortOption = $this->getEffectiveSortingMode();
404  $this->currentPresentationOption = $this->getEffectivePresentationMode();
405  }
406 
407  public function getEffectivePresentationMode(): string
408  {
409  $mode = $this->actor->getPref('pd_view_pres_' . $this->currentView);
410 
411  if (!in_array($mode, $this->getSelectablePresentationModes(), true)) {
412  $mode = $this->getDefaultPresentationByView($this->currentView);
413  }
414 
415  return $mode;
416  }
417 
418  public function getEffectiveSortingMode(): string
419  {
420  $mode = $this->actor->getPref('pd_order_items_' . $this->currentView);
421 
422  if (!in_array($mode, $this->getSelectableSortingModes(), true)) {
423  $mode = $this->getDefaultSortingByView($this->currentView);
424  }
425 
426  return $mode;
427  }
428 
432  public function getSelectableSortingModes(): array
433  {
434  return array_intersect(
435  $this->getActiveSortingsByView($this->currentView),
436  $this->getAvailableSortOptionsByView($this->currentView)
437  );
438  }
439 
443  public function getSelectablePresentationModes(): array
444  {
445  if (!$this->access->canChangePresentation($this->actor->getId())) {
446  return [$this->getDefaultPresentationByView($this->currentView)];
447  }
448  return array_intersect(
449  $this->getActivePresentationsByView($this->currentView),
450  $this->getAvailablePresentationsByView($this->currentView)
451  );
452  }
453 
454  public function storeActorPresentationMode(string $presentationMode): void
455  {
456  if (in_array($presentationMode, $this->getSelectablePresentationModes())) {
457  $this->actor->writePref(
458  'pd_view_pres_' . $this->currentView,
459  $presentationMode
460  );
461  }
462  }
463 
464  public function storeActorSortingMode(string $sortingMode): void
465  {
466  if (in_array($sortingMode, $this->getSelectableSortingModes())) {
467  $this->actor->writePref(
468  'pd_order_items_' . $this->currentView,
469  $sortingMode
470  );
471  }
472  }
473 
474  public function getActor(): ilObjUser
475  {
476  return $this->actor;
477  }
478 
479  public function getCurrentView(): int
480  {
481  return $this->currentView;
482  }
483 
484  public function getCurrentSortOption(): string
485  {
487  }
488 
489  public function isValidView(int $view): bool
490  {
491  return in_array($view, $this->validViews, true);
492  }
493 
494  public function getDefaultSorting(): string
495  {
496  return $this->settings->get('dash_def_sort', $this->getSortByLocationMode());
497  }
498 
499  public function isSortedByType(): bool
500  {
501  return $this->currentSortOption === $this->getSortByTypeMode();
502  }
503 
504  public function isSortedByAlphabet(): bool
505  {
506  return $this->currentSortOption === $this->getSortByAlphabetMode();
507  }
508 
509  public function isSortedByLocation(): bool
510  {
511  return $this->currentSortOption === $this->getSortByLocationMode();
512  }
513 
514  public function isSortedByStartDate(): bool
515  {
516  return $this->currentSortOption === $this->getSortByStartDateMode();
517  }
518 
519  public function isTilePresentation(): bool
520  {
521  return $this->currentPresentationOption === $this->getTilePresentationMode();
522  }
523 
524  public function isListPresentation(): bool
525  {
526  return $this->currentPresentationOption === $this->getListPresentationMode();
527  }
528 
529  public function enabledRecommendedContent(): bool
530  {
531  return true;
532  }
533 
534  public function enabledLearningSequences(): bool
535  {
536  return (int) $this->settings->get('disable_learning_sequences', '1') === 0;
537  }
538 
539  public function enabledStudyProgrammes(): bool
540  {
541  return (int) $this->settings->get('disable_study_programmes', '1') === 0;
542  }
543 
544  public function enableLearningSequences(bool $status): void
545  {
546  $this->settings->set('disable_learning_sequences', $status ? '0' : '1');
547  }
548 
549  public function enableStudyProgrammes(bool $status): void
550  {
551  $this->settings->set('disable_study_programmes', $status ? '0' : '1');
552  }
553 
554  public function getViewName(int $view): string
555  {
556  return self::$viewNames[$view];
557  }
558 }
storeViewSorting(int $view, string $type, array $active)
__construct(ilObjUser $actor, int $view=self::VIEW_SELECTED_ITEMS, ?Setting $settings=null, ?DashboardAccess $access=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
storeViewPresentation(int $view, string $default, array $active)
global $DIC
Definition: shib_login.php:22