ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbstractBaseNotificationRenderer.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\GlobalScreen\Client\Notifications as ClientNotifications;
27 
33 {
34  use Hasher;
35 
40  public function __construct(protected UIFactory $ui_factory)
41  {
42  }
43 
48  protected function buildCloseQuery(isItem $item): string
49  {
50  return http_build_query([
51  ClientNotifications::MODE => ClientNotifications::MODE_CLOSED,
52  ClientNotifications::ITEM_ID => $this->hash($item->getProviderIdentification()->serialize()),
53  ]);
54  }
55 }
__construct(protected UIFactory $ui_factory)
AbstractBaseNotificationRenderer constructor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface NotificationRenderer Every Notification should have a renderer, if you won&#39;t provide on in ...