3 declare(strict_types=1);
30 protected \ilSetupLanguage
$lng;
43 array $predefined_agents = []
64 foreach ($plugins as $plugin_name) {
65 $agents = $agents->withAdditionalAgent(
83 $this->predefined_agents
87 $agent_classes = $this->interface_finder->getMatchingClassNames(
91 foreach ($agent_classes as $class_name) {
92 $agents = $agents->withAdditionalAgent(
118 $path =
"[/]Customizing/global/plugins/.*/.*/" . $name .
"/.*";
119 $agent_classes = iterator_to_array($this->interface_finder->getMatchingClassNames(
125 if ($agent_classes === []) {
131 foreach ($agent_classes as $class_name) {
132 $agents[] =
new $class_name(
139 if (count($agents) === 1) {
151 if (!class_exists($class_name)) {
152 throw new \InvalidArgumentException(
"Class '" . $class_name .
"' not found.");
155 return new $class_name(
170 if (preg_match(
"/il(\w+)SetupAgent/", $class_name, $match)) {
171 return strtolower($match[1]);
182 new \RecursiveIteratorIterator(
186 foreach ($directories as $dir) {
188 if (preg_match(
"%^" . __DIR__ .
"/[.][.]/[.][.]/Customizing/global/plugins/((Modules)|(Services))/((\\w+/){2})([^/\.]+)(/|$)%", (
string) $dir, $groups)) {
190 if (isset($names[
$name])) {
193 $names[
$name] =
true;
An agent that is just a collection of some other agents.
__construct(Refinery $refinery, Data\Factory $data_factory, \ilSetupLanguage $lng, ImplementationOfInterfaceFinder $interface_finder, array $predefined_agents=[])
getCoreAgents()
Collect core agents from the system bundled in a collection.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A agent is some component that performs part of the setup process.
getPluginAgent(string $name)
Get a agent from a specific plugin.
getAgentByClassName(string $class_name)
Get an agent by class name.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ImplementationOfInterfaceFinder $interface_finder
Data Factory $data_factory
getAgents()
Collect all agents from the system, core and plugin, bundled in a collection.
getAgentNameByClassName(string $class_name)
Derive a name for the agent based on a class name.