ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilNotificationObject.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ilNotification;
24 use ilObjUser;
25 
30 {
31  public string $title = '';
32  public string $shortDescription = '';
33  public string $longDescription = '';
35  public array $links = [];
36  public string $iconPath = '';
38  public array $handlerParams = [];
39 
40  public function __construct(public ilNotificationConfig $baseNotification, public ilObjUser $user)
41  {
42  $this->handlerParams = $this->baseNotification->getHandlerParams();
43  }
44 
48  public function __sleep(): array
49  {
50  return ['title', 'shortDescription', 'longDescription', 'iconPath', 'links', 'handlerParams'];
51  }
52 }
__construct(public ilNotificationConfig $baseNotification, public ilObjUser $user)