ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilChatroomObjectDefinition.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
30  private readonly string $moduleBasePath;
31 
36  private readonly string $relativeClassPath;
37 
43  private readonly string $guiScope;
44 
45  public function __construct(
49  private readonly string $moduleName,
50  string $moduleBasePath,
51  string $relativeClassPath = 'classes',
52  string $guiScope = ''
53  ) {
54  $this->moduleBasePath = rtrim($moduleBasePath, '/\\');
55  $this->relativeClassPath = rtrim($relativeClassPath);
56  $this->guiScope = rtrim($guiScope);
57  }
58 
63  public static function getDefaultDefinition(string $moduleName): self
64  {
65  return new self($moduleName, '../components/ILIAS/' . $moduleName . '/');
66  }
67 
73  public static function getDefaultDefinitionWithCustomGUIPath(string $moduleName, string $guiScope = ''): self
74  {
75  return new self(
76  $moduleName,
77  '../components/ILIAS/' . $moduleName . '/',
78  'classes',
79  $guiScope
80  );
81  }
82 
83  public function hasGUI(string $gui): bool
84  {
85  $path = $this->getGUIPath($gui);
86 
87  return class_exists($this->getGUIClassName($gui)) && file_exists($path);
88  }
89 
93  public function getGUIPath(string $gui): string
94  {
95  return (
96  $this->moduleBasePath . '/' .
97  $this->relativeClassPath . '/' .
98  $this->guiScope . 'gui/class.' . $this->getGUIClassName($gui) . '.php'
99  );
100  }
101 
105  public function getGUIClassName(string $gui): string
106  {
107  return 'il' . $this->moduleName . ucfirst($this->guiScope) . ucfirst($gui) . 'GUI';
108  }
109 
113  public function buildGUI(string $gui, ilChatroomObjectGUI $chatroomObjectGUI): ilChatroomGUIHandler
114  {
115  $className = $this->getGUIClassName($gui);
116  return new $className($chatroomObjectGUI);
117  }
118 }
getGUIPath(string $gui)
Builds gui path using given $gui and returns it.
static getDefaultDefinitionWithCustomGUIPath(string $moduleName, string $guiScope='')
Returns an Instance of ilChatroomObjectDefinition, using given $moduleName and $guiScope as parameter...
$path
Definition: ltiservices.php:29
__construct(private readonly string $moduleName, string $moduleBasePath, string $relativeClassPath='classes', string $guiScope='')
Class ilChatroomGUIHandler.
static getDefaultDefinition(string $moduleName)
Returns an Instance of ilChatroomObjectDefinition, using given $moduleName as parameter.
buildGUI(string $gui, ilChatroomObjectGUI $chatroomObjectGUI)
Builds and returns new gui using given $gui and $gui.
getGUIClassName(string $gui)
Builds gui classname using given $gui and returns it.