ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StandardNotificationGroupRenderer.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
34 {
40  {
41  if (!$item instanceof StandardNotificationGroup) {
42  throw new \LogicException("item is not a StandardNotificationGroup");
43  }
44 
45  $slate = $this->ui_factory->mainControls()->slate()->notification($item->getTitle(), []);
46  foreach ($item->getNotifications() as $standard_notification) {
47  $slate = $slate->withAdditionalEntry($standard_notification->getRenderer($this->ui_factory)
48  ->getNotificationComponentForItem($standard_notification));
49  }
50 
51  return $slate;
52  }
53 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class StandardNotificationGroup Groups a set of Notification.
Interface NotificationRenderer Every Notification should have a renderer, if you won&#39;t provide on in ...