ILIAS  trunk Revision v11.0_alpha-1723-g8e69f309bab
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ModeProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
31 {
33  public const ID = 0;
34 
35  public function __construct(InternalGUIService $gui)
36  {
37  $this->feature_config = new FeatureConfig();
38  $this->ui_modifier = new UIModifier($gui);
39  $this->id = self::ID;
40  }
41 }