ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Settings.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24use ILIAS\User\Settings\StartingPoint\Setting as StartingPointSetting;
25
26class Settings implements UserSettings
27{
28 public function getSettingConfigurations(): array
29 {
30 return [
31 LastVisited::class,
32 SessionReminder::class,
33 StartingPointSetting::class
34 ];
35 }
36}
getSettingConfigurations()
Return all User Settings provided by the component.
Definition: Settings.php:28