ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
AbstractPluginProvider.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
21 
24 
29 abstract class AbstractPluginProvider extends AbstractProvider implements PluginProvider
30 {
32 
36  public function __construct(Container $dic)
37  {
38  parent::__construct($dic);
39  $this->identification_provider = $dic->globalScreen()->identification()->plugin($this->getPluginID(), $this);
40  }
41 
45  abstract public function getPluginID(): string;
46 
50  public function id(): PluginIdentificationProvider
51  {
53  }
54 }
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...