1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-10-31 14:10:08 +00:00
Tims-Chat/file/lib/system/user/online/location/ChatLocation.class.php
2014-02-28 23:07:51 +01:00

37 lines
1.1 KiB
PHP

<?php
namespace chat\system\user\online\location;
use chat\data;
/**
* Implementation of IUserOnlineLocation for the chat.
*
* @author Tim Düsterhus
* @copyright 2010-2014 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.chat
* @subpackage system.user.online.location
*/
class ChatLocation implements \wcf\system\user\online\location\IUserOnlineLocation {
/**
* @see \wcf\system\user\online\location\IUserOnlineLocation::cache()
*/
public function cache(\wcf\data\user\online\UserOnline $user) {}
/**
* @see \wcf\system\user\online\location\IUserOnlineLocation::get()
*/
public function get(\wcf\data\user\online\UserOnline $user, $languageVariable = '') {
$rooms = data\room\RoomCache::getInstance()->getRooms();
if (isset($rooms[$user->objectID])) {
if ($rooms[$user->objectID]->canEnter()) {
return \wcf\system\WCF::getLanguage()->getDynamicVariable($languageVariable, array(
'room' => $rooms[$user->objectID]
));
}
}
return '';
}
}