ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
SettingsFactory.php
Go to the documentation of this file.
1 <?php
2 
20 
25 {
26  private static ?Settings $settings = null;
27 
28  public function getSettings(): Settings
29  {
30  if (self::$settings === null) {
31  self::$settings = new Settings();
32  }
33  return self::$settings;
34  }
35 }
array $settings
Setting values (LTI parameters, custom parameters and local parameters).
Definition: System.php:200
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Form.php:19