]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Notification/Notification.php
Issue 10050: Improve photo deletions
[friendica.git] / src / Object / Notification / Notification.php
index 2e853a649a59712e43d14c55dfd3606aa1201cb5..2f1e8cdd126b0ea6d6225b2b6063ed5f0ca61d9b 100644 (file)
@@ -1,7 +1,29 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Object\Notification;
 
+/**
+ * A view-only object for printing item notifications to the frontend
+ */
 class Notification implements \JsonSerializable
 {
        const SYSTEM   = 'system';
@@ -91,18 +113,16 @@ class Notification implements \JsonSerializable
                return $this->seen;
        }
 
-       public function __construct(string $label = '', string $link = '', string $image = '',
-                                   string $url = '', string $text = '',
-                                   string $when = '', string $ago = '', bool $seen = false)
+       public function __construct(array $data)
        {
-               $this->label = $label;
-               $this->link  = $link;
-               $this->image = $image;
-               $this->url   = $url;
-               $this->text  = $text;
-               $this->when  = $when;
-               $this->ago   = $ago;
-               $this->seen  = $seen;
+               $this->label = $data['label'] ?? '';
+               $this->link  = $data['link'] ?? '';
+               $this->image = $data['image'] ?? '';
+               $this->url   = $data['url'] ?? '';
+               $this->text  = $data['text'] ?? '';
+               $this->when  = $data['when'] ?? '';
+               $this->ago   = $data['ago'] ?? '';
+               $this->seen  = $data['seen'] ?? false;
        }
 
        /**