ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables 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 {
39 
44  protected $handle_opened;
45 
50  protected $handle_closed;
51 
56  public function __construct(IdentificationInterface $identification)
57  {
58  $this->handle_opened = function () : void {
59  };
60 
61  $this->provider_identification = $identification;
62  }
63 
68  {
70  }
71 
76  {
77  return new StandardNotificationRenderer($factory);
78  }
79 
83  public function withOpenedCallable(callable $handle_opened) : isItem
84  {
85  $clone = clone $this;
86  $clone->handle_opened = $handle_opened;
87  return $clone;
88  }
89 
93  public function getOpenedCallable() : callable
94  {
95  return $this->handle_opened;
96  }
97 
101  public function withClosedCallable(callable $handle_closed) : isItem
102  {
103  $clone = clone $this;
104  $clone->handle_closed = $handle_closed;
105  return $clone;
106  }
107 
111  public function getClosedCallable() : ?callable
112  {
113  return $this->handle_closed;
114  }
115 
119  public function hasClosedCallable() : bool
120  {
121  return is_callable($this->handle_closed);
122  }
123 }
__construct(IdentificationInterface $identification)
StandardNotification constructor.
Interface NotificationRenderer Every Notification should have a renderer, if you won&#39;t provide on in ...
$factory
Definition: metadata.php:58