ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
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