19 declare(strict_types=1);
52 foreach ($plugins as $plugin_name) {
53 $agents = $agents->withAdditionalAgent(
68 if ($this->component_agents instanceof AgentCollection) {
72 $agents =
new AgentCollection($this->
refinery, []);
74 foreach ($this->component_agents as $agent) {
75 $agents = $agents->withAdditionalAgent(
81 $this->component_agents = $agents;
98 $path =
"[/]public/Customizing/plugins/.*/.*/" . $name .
"/.*";
99 $agent_classes = iterator_to_array($this->interface_finder->getMatchingClassNames(
105 if ($agent_classes === []) {
111 foreach ($agent_classes as $class_name) {
112 $agents[] =
new $class_name(
119 if (count($agents) === 1) {
123 return new AgentCollection(
131 if (!class_exists($class_name)) {
132 throw new \InvalidArgumentException(
"Class '" . $class_name .
"' not found.");
135 return new $class_name(
150 if (preg_match(
"/il(\w+)SetupAgent/", $class_name, $match)) {
151 return strtolower($match[1]);
162 new \RecursiveIteratorIterator(
166 foreach ($directories as $dir) {
168 if (preg_match(
"%^" . __DIR__ .
"/[.][.]/[.][.]/[.][.]/[.][.]/public/Customizing/plugins/((\\w+/){2})([^/\.]+)(/|$)%", (
string) $dir, $groups)) {
170 if (isset($names[$name])) {
173 $names[$name] =
true;
Interface Observer Contains several chained tasks and infos about them.
__construct(protected Refinery $refinery, protected Data\Factory $data_factory, protected \ILIAS\Language\Language $lng, protected ImplementationOfInterfaceFinder $interface_finder, $component_agents)
getPluginAgent(string $name)
Get a agent from a specific plugin.
array AgentCollection $component_agents
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...
getComponentAgents()
Collect core agents from the system bundled in a collection.
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.