ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
trait.ModeProviderBase.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\Survey\Mode;
22 
24 
28 trait ModeProviderBase
29 {
30  protected ?int $id = null;
34 
35  public function getId(): int
36  {
37  return $this->id;
38  }
39 
40  public function getFeatureConfig(): FeatureConfig
41  {
42  return $this->feature_config;
43  }
44 
45  public function getUIModifier(): UIModifier
46  {
47  $mod = $this->ui_modifier;
48  $mod->setInternalService($this->service);
49  return $mod;
50  }
51 
52  public function setInternalService(InternalService $service): void
53  {
54  $this->service = $service;
55  }
56 }
setInternalService(InternalService $internal_service)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setInternalService(InternalService $service)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23