friendica/src/Navigation/Notifications/ValueObject/FormattedNavNotification.php
2024-12-07 14:45:47 +00:00

56 lines
1.8 KiB
PHP

<?php
// Copyright (C) 2010-2024, the Friendica project
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace Friendica\Navigation\Notifications\ValueObject;
use Friendica\BaseEntity;
/**
* A view-only object for printing item notifications to the frontend
*
* @property-read bool $seen
*/
class FormattedNavNotification extends BaseEntity
{
/** @var array */
protected $contact;
/** @var string */
protected $timestamp;
/** @var string */
protected $plaintext;
/** @var string */
protected $html;
/** @var string */
protected $href;
/** @var bool */
protected $seen;
/**
* @param string $contact_name Contact display name
* @param string $contact_url Contact profile URL
* @param string $contact_photo Contact picture URL
* @param string $timestamp Unix timestamp
* @param string $plaintext Localized notification message with the placeholder replaced by the contact name
* @param string $html Full HTML string of the notification menu element
* @param string $href Absolute URL this notification should send the user to when interacted with
* @param bool $seen Whether the user interacted with this notification once
*/
public function __construct(string $contact_name, string $contact_url, string $contact_photo, string $timestamp, string $plaintext, string $html, string $href, bool $seen)
{
// Properties differ from constructor because this structure is used in the "nav-update" JavaScript event listener
$this->contact = [
'name' => $contact_name,
'url' => $contact_url,
'photo' => $contact_photo,
];
$this->timestamp = $timestamp;
$this->plaintext = $plaintext;
$this->html = $html;
$this->href = $href;
$this->seen = $seen;
}
}