ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
Notification.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 2019 Timnon Amstutz <timon.amstutz@ilub.unibe.ch> Extended GPL, see docs/LICENSE */
3 
5 
6 use \ILIAS\UI\Component\MainControls\Slate as ISlate;
10 
15 class Notification extends Slate implements ISlate\Notification
16 {
20  protected $contents = [];
21 
22  public function __construct(
23  SignalGeneratorInterface $signal_generator,
24  string $name,
25  $notification_items,
27  ) {
28  $this->contents = $notification_items;
29  parent::__construct($signal_generator, $name, $symbol);
30  }
31 
36  {
37  $clone = clone $this;
38  $clone->contents[] = $entry;
39  return $clone;
40  }
41 
45  public function getContents() : array
46  {
47  return $this->contents;
48  }
49 
50  public function withMappedSubNodes(callable $f)
51  {
52  return $this;
53  }
54 }
Notifications Slates are Slates restricted to only containing Notification Items. ...
This describes a symbol.
Definition: Symbol.php:11
__construct(SignalGeneratorInterface $signal_generator, string $name, $notification_items, Symbol $symbol)
__construct(Container $dic, ilPlugin $plugin)
withAdditionalEntry(NotificationItem $entry)
Get a Notification Slate like this, but with one additional Notification Item entry.