1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/system/user/notification/event/InvitedUserNotificationEvent.class.php

76 lines
2.2 KiB
PHP
Raw Normal View History

2014-09-28 23:38:13 +00:00
<?php
namespace chat\system\user\notification\event;
/**
2015-03-21 21:10:45 +00:00
* Notification event for invites.
2014-09-28 23:38:13 +00:00
*
* @author Tim Düsterhus
2015-03-21 21:10:45 +00:00
* @copyright 2010-2015 Tim Düsterhus
2014-09-28 23:38:13 +00:00
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.chat
* @subpackage system.user.notification.event
*/
class InvitedUserNotificationEvent extends \wcf\system\user\notification\event\AbstractUserNotificationEvent {
/**
* @see \wcf\system\user\notification\event\AbstractUserNotificationEvent::$stackable
*/
protected $stackable = false;
/**
* @see \wcf\system\user\notification\event\IUserNotificationEvent::getAuthorID()
*/
public function getAuthorID() {
return $this->getAuthor()->userID;
}
/**
* @see \wcf\system\user\notification\event\IUserNotificationEvent::getAuthor()
*/
public function getAuthor() {
2015-03-21 21:10:45 +00:00
// TODO: Change to AbstractSharedUserNotificationEvent w/ Tims Chat 4
2014-09-28 23:38:13 +00:00
return new \wcf\data\user\UserProfile(new \wcf\data\user\User($this->additionalData['userID']));
}
/**
* @see \wcf\system\user\notification\event\IUserNotificationEvent::getTitle()
*/
public function getTitle() {
return $this->getLanguage()->get('chat.notification.invited.title');
}
/**
* @see \wcf\system\user\notification\event\IUserNotificationEvent::getMessage()
*/
public function getMessage() {
return $this->getLanguage()->getDynamicVariable('chat.notification.invited.message', array(
'userNotificationObject' => $this->userNotificationObject,
'author' => $this->author
));
}
/**
* @see \wcf\system\user\notification\event\IUserNotificationEvent::getLink()
*/
public function getLink() {
return \wcf\system\request\LinkHandler::getInstance()->getLink('Chat', array(
'application' => 'chat',
'object' => $this->userNotificationObject->getDecoratedObject()
));
}
/**
* @see \wcf\system\user\notification\event\IUserNotificationEvent::supportsEmailNotification()
*/
public function supportsEmailNotification() {
return false;
}
/**
* @see \wcf\system\user\notification\event\IUserNotificationEvent::checkAccess()
*/
public function checkAccess() {
2015-03-21 21:10:45 +00:00
return $this->userNotificationObject->getDecoratedObject();
2014-09-28 23:38:13 +00:00
}
}