ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbstractToastProvider.php
Go to the documentation of this file.
1 <?php
18 declare(strict_types=1);
19 
21 
27 
28 abstract class AbstractToastProvider extends AbstractProvider implements ToastProvider
29 {
30  protected Container $dic;
31  protected Factory $ui_factory;
34 
38  public function __construct(Container $dic)
39  {
40  parent::__construct($dic);
41  $this->toast_factory = $this->globalScreen()->toasts()->factory();
42  $this->ui_factory = $this->dic->ui()->factory();
43  $this->if = $this->globalScreen()->identification()->core($this);
44  }
45 }
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
This is how the factory for UI elements looks.
Definition: Factory.php:37
__construct(Container $dic, ilPlugin $plugin)