ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbstractNotificationProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
21 
26 
32 {
33  protected Container $dic;
36 
40  public function __construct(Container $dic)
41  {
42  parent::__construct($dic);
43  $this->notification_factory = $this->globalScreen()->notifications()->factory();
44  $this->if = $this->globalScreen()->identification()->core($this);
45  }
46 
50  public function getAdministrativeNotifications(): array
51  {
52  return [];
53  }
54 }
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
__construct(Container $dic, ilPlugin $plugin)