ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ToastFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
31 {
32  public function __construct(private ToastRendererFactory $renderer_factory)
33  {
34  }
35 
51  public function standard(
52  IdentificationInterface $identification,
53  string $title,
54  ?Icon $icon = null
56  return new StandardToastItem(
57  $identification,
58  $this->renderer_factory->getRenderer(StandardToastItem::class),
59  $title,
60  $icon
61  );
62  }
63 
70  public function action(string $identifier, string $title, \Closure $action): ToastAction
71  {
72  return new ToastAction($identifier, $title, $action);
73  }
74 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
action(string $identifier, string $title, \Closure $action)
A ToastAction leads into the rendered toast to a link that can be clicked by the user.
__construct(private ToastRendererFactory $renderer_factory)
standard(IdentificationInterface $identification, string $title, ?Icon $icon=null)
Your Toasts shiuld provide Callables which are executed on some events: onShow, onClose, onVanish.