ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ModeProvider.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
31{
33 public const ID = 1;
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}