23 protected const BASE_PATH =
"./Customizing/global/plugins/";
29 return \ilArtifactComponentRepository::PLUGIN_DATA_PATH;
36 foreach ([
"Modules",
"Services"] as
$type) {
37 $components = $this->
scanDir(static::BASE_PATH . $type);
38 foreach ($components as $component) {
40 || ! $this->
isDir(static::BASE_PATH .
"$type/$component"))
continue;
41 $slots = $this->
scanDir(static::BASE_PATH .
"$type/$component");
42 foreach ($slots as $slot) {
44 || ! $this->
isDir(static::BASE_PATH .
"$type/$component/$slot"))
continue;
45 $plugins = $this->
scanDir(static::BASE_PATH .
"$type/$component/$slot");
48 || ! $this->
isDir(static::BASE_PATH .
"$type/$component/$slot/$plugin"))
continue;
54 return new Setup\Artifact\ArrayArtifact(
$data);
59 $plugin_path = $this->
buildPluginPath($type, $component, $slot, $plugin);
60 $plugin_php = $plugin_path . static::PLUGIN_PHP;
62 throw new \RuntimeException(
63 "Cannot read $plugin_php." 67 $plugin_class = $plugin_path . sprintf(static::PLUGIN_CLASS_FILE, $plugin);
69 throw new \RuntimeException(
70 "Cannot read $plugin_class." 74 require_once($plugin_php);
76 throw new \InvalidArgumentException(
"$path does not define \$id");
79 throw new \InvalidArgumentException(
"$path does not define \$version");
82 throw new \InvalidArgumentException(
"$path does not define \$ilias_min_version");
85 throw new \InvalidArgumentException(
"$path does not define \$ilias_max_version");
88 if (isset($data[
$id])) {
89 throw new \RuntimeException(
90 "Plugin with id $id already exists." 106 $supports_cli_setup ?? null
113 protected function scanDir(
string $dir): array
115 if (!file_exists($dir)) {
118 $result = scandir($dir);
119 return array_values(array_diff($result, [
".",
".."]));
124 return file_exists($path) && is_file($path);
127 protected function isDir(
string $dir): bool
129 return file_exists($dir) && is_dir($dir);
134 return ( substr($file, 0, 1) ===
'.' );
139 return static::BASE_PATH .
"$type/$component/$slot/$plugin/";
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildPluginPath(string $type, string $component, string $slot, string $plugin)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
An artifact is some file that is build on demand per installation and is not shipped with the ILIAS s...
addPlugin(array &$data, string $type, string $component, string $slot, string $plugin)