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/dashboard/box/OnlineListDashboardBox.class.php
2013-05-02 23:08:16 +02:00

48 lines
1.2 KiB
PHP

<?php
namespace chat\system\dashboard\box;
use chat\data;
/**
* Dashboard box that shows chatters.
*
* @author Tim Düsterhus
* @copyright 2010-2013 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.dashboard.box
*/
class OnlineListDashboardBox extends \wcf\system\dashboard\box\AbstractContentDashboardBox {
/**
* all rooms in the current installation
* @var array<\chat\data\room\Room>
*/
public $rooms = array();
/**
* @see wcf\system\dashboard\box\IDashboardBox::init()
*/
public function init(\wcf\data\dashboard\box\DashboardBox $box, \wcf\page\IPage $page) {
parent::init($box, $page);
if (!CHAT_ACTIVE) return;
if (!\wcf\system\WCF::getUser()->userID) return;
$this->rooms = data\room\Room::getCache();
foreach ($this->rooms as $key => $room) {
if (!$room->canEnter()) unset($this->rooms[$key]);
}
}
/**
* @see wcf\system\dashboard\box\AbstractContentDashboardBox::render()
*/
protected function render() {
\wcf\system\WCF::getTPL()->assign(array(
'rooms' => $this->rooms
));
return \wcf\system\WCF::getTPL()->fetch('dashboardBoxOnlineList', 'chat');
}
}