ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
AbstractBaseNotificationRenderer.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
21 
22 use ILIAS\GlobalScreen\Client\Notifications as ClientNotifications;
26 
32 {
33  use Hasher;
34 
38  protected $ui_factory;
39 
44  public function __construct(UIFactory $factory)
45  {
46  $this->ui_factory = $factory;
47  }
48 
53  protected function buildCloseQuery(isItem $item) : string
54  {
55  return http_build_query([
56  ClientNotifications::MODE => ClientNotifications::MODE_CLOSED,
57  ClientNotifications::ITEM_ID => $this->hash($item->getProviderIdentification()->serialize()),
58  ]);
59  }
60 }
Interface NotificationRenderer Every Notification should have a renderer, if you won&#39;t provide on in ...
$factory
Definition: metadata.php:58