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
24
25class Settings implements UserSettings
26{
27 public function getSettingConfigurations(): array
28 {
29 return [
30 TimeZone::class,
31 DateFormat::class,
32 TimeFormat::class
33 ];
34 }
35}
getSettingConfigurations()
Return all User Settings provided by the component.
Definition: Settings.php:27