Archived
1
0
This repository has been archived on 2020-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
old/application/models/notifications/PostMentionNotification.php
2018-10-16 18:28:42 +02:00

34 lines
918 B
PHP

<?php
namespace Notification\Users;
use Notification;
require_once 'Notification.php';
class PostMentionNotification extends \Notification
{
public function __construct(array $data)
{
$data['type'] = 'users.mentionedPost';
parent::__construct($data);
}
public function getNotificationLink()
{
return '/user/' . $this->sender->getUsername() . '/post/' . $this->parameters;
}
public function getNotificationImage()
{
return $this->sender->getProfilePicture();
}
public function messageForNotification(Notification $notification)
{
return ['line' => 'users.mentionedPost.single', 'attributes' => [$this->sender->getName()]];
}
public function messageForNotifications(array $notifications, $realCount = 0)
{
}
}