]> git.mxchange.org Git - friendica.git/blob - src/Navigation/Notifications/ValueObject/FormattedNavNotification.php
Merge pull request #11336 from MrPetovan/task/4639-soapbox-intro-notification
[friendica.git] / src / Navigation / Notifications / ValueObject / FormattedNavNotification.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Navigation\Notifications\ValueObject;
23
24 use Friendica\BaseEntity;
25
26 /**
27  * A view-only object for printing item notifications to the frontend
28  */
29 class FormattedNavNotification extends BaseEntity
30 {
31         /** @var array */
32         protected $contact;
33         /** @var string */
34         protected $timestamp;
35         /** @var string */
36         protected $plaintext;
37         /** @var string */
38         protected $html;
39         /** @var string */
40         protected $href;
41         /** @var bool */
42         protected $seen;
43
44         /**
45          * @param array  $contact   Contact array with the following keys: name, url, photo
46          * @param string $timestamp Unix timestamp
47          * @param string $plaintext Localized notification message with the placeholder replaced by the contact name
48          * @param string $html      Full HTML string of the notification menu element
49          * @param string $href      Absolute URL this notification should send the user to when interacted with
50          * @param bool   $seen      Whether the user interacted with this notification once
51          */
52         public function __construct(array $contact, string $timestamp, string $plaintext, string $html, string $href, bool $seen)
53         {
54                 $this->contact   = $contact;
55                 $this->timestamp = $timestamp;
56                 $this->plaintext = $plaintext;
57                 $this->html      = $html;
58                 $this->href      = $href;
59                 $this->seen      = $seen;
60         }
61 }