ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
AbstractPluginProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
21 
24 
29 abstract class AbstractPluginProvider extends AbstractProvider implements PluginProvider
30 {
35 
39  public function __construct(Container $dic)
40  {
41  parent::__construct($dic);
42  $this->identification_provider = $dic->globalScreen()->identification()->plugin($this->getPluginID(), $this);
43  }
44 
48  abstract public function getPluginID() : string;
49 
53  public function id() : PluginIdentificationProvider
54  {
56  }
57 }
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:18
__construct(Container $dic, ilPlugin $plugin)