ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilComponentFactoryImplementation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  protected \ilComponentRepositoryWrite $component_repository;
27  protected \ilDBInterface $db;
28 
29  protected array $plugins = [];
30 
31  public function __construct(
32  \ilComponentRepositoryWrite $component_repository,
33 
34  // These are only required to pass on to the created objects.
35  \ilDBInterface $db
36  ) {
37  $this->component_repository = $component_repository;
38 
39  // These are only required to pass on to the created objects.
40  $this->db = $db;
41  }
42 
43  public function getPlugin(string $id): ilPlugin
44  {
45  if (!isset($this->plugins[$id])) {
46  $plugin_info = $this->component_repository->getPluginById($id);
47  $class_name = $plugin_info->getClassName();
48  $plugin = new $class_name($this->db, $this->component_repository, $id);
49  $this->plugins[$id] = $plugin;
50  }
51 
52  return $this->plugins[$id];
53  }
54 
55  public function getActivePluginsInSlot(string $slot_id): Generator
56  {
57  $ps = $this->component_repository->getPluginSlotById($slot_id)->getActivePlugins();
58  foreach ($ps as $p) {
59  yield $this->getPlugin($p->getId());
60  }
61  }
62 }
__construct(\ilComponentRepositoryWrite $component_repository, \ilDBInterface $db)
Writeable part of repository interface to ilComponentDataDB.
getPlugin(string $id)
Get the plugin for the given id.
getActivePluginsInSlot(string $slot_id)
Get the active plugins for the given slot.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23