ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbstractBaseNotification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 use Closure;
28 
33 abstract class AbstractBaseNotification implements isStandardItem
34 {
38  protected ?Closure $handle_opened = null;
39 
43  protected ?Closure $handle_closed = null;
44 
49  public function __construct(protected IdentificationInterface $provider_identification)
50  {
51  $this->handle_opened = function (): void {
52  };
53  }
54 
59  {
60  return $this->provider_identification;
61  }
62 
66  public function getRenderer(UIFactory $factory): NotificationRenderer
67  {
68  return new StandardNotificationRenderer($factory);
69  }
70 
74  public function withOpenedCallable(callable $handle_opened): isItem
75  {
76  $clone = clone $this;
77  $clone->handle_opened = $handle_opened;
78  return $clone;
79  }
80 
84  public function getOpenedCallable(): callable
85  {
86  return $this->handle_opened;
87  }
88 
92  public function withClosedCallable(callable $handle_closed): isItem
93  {
94  $clone = clone $this;
95  $clone->handle_closed = $handle_closed;
96  return $clone;
97  }
98 
102  public function getClosedCallable(): ?callable
103  {
104  return $this->handle_closed;
105  }
106 
110  public function hasClosedCallable(): bool
111  {
112  return is_callable($this->handle_closed);
113  }
114 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Closure $handle_closed
Callable to be executed, if this specific item has been closed.
Closure $handle_opened
Callable to be executed, if the notification center has been opened.
Interface NotificationRenderer Every Notification should have a renderer, if you won&#39;t provide on in ...
__construct(protected IdentificationInterface $provider_identification)
StandardNotification constructor.