mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-11-01 14:20:07 +00:00
28 lines
745 B
PHP
28 lines
745 B
PHP
|
<?php
|
||
|
namespace wcf\system\cache\builder;
|
||
|
|
||
|
/**
|
||
|
* Caches all chat rooms.
|
||
|
*
|
||
|
* @author Tim Düsterhus
|
||
|
* @copyright 2010-2011 Tim Düsterhus
|
||
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
||
|
* @package timwolla.wcf.chat
|
||
|
* @subpackage system.cache.builder
|
||
|
*/
|
||
|
class ChatRoomCacheBuilder implements ICacheBuilder {
|
||
|
/**
|
||
|
* @see wcf\system\cache\ICacheBuilder::getData()
|
||
|
*/
|
||
|
public function getData(array $cacheResource) {
|
||
|
// get all chat rooms
|
||
|
$roomList = new \wcf\data\chat\room\ChatRoomList();
|
||
|
$roomList->sqlOrderBy = "chat_room.position";
|
||
|
$roomList->sqlLimit = 0;
|
||
|
$roomList->readObjects();
|
||
|
$rooms = $roomList->getObjects();
|
||
|
|
||
|
return $rooms;
|
||
|
}
|
||
|
}
|