ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
ilNotificationLink.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
23 use ilNotification;
24 use ilObjUser;
25 
30 {
34  private $title;
35  private string $url;
36 
37  public function __construct($title, string $url)
38  {
39  $this->title = $title;
40  $this->url = $url;
41  }
42 
46  public function getTitle()
47  {
48  return $this->title;
49  }
50 
54  public function setTitle($title): void
55  {
56  $this->title = $title;
57  }
58 
59  public function getUrl(): string
60  {
61  return $this->url;
62  }
63 
64  public function setUrl(string $url): void
65  {
66  $this->url = $url;
67  }
68 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...