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/cache/builder/ChatRoomCacheBuilder.class.php

27 lines
717 B
PHP
Raw Normal View History

2011-11-26 15:47:28 +00:00
<?php
namespace wcf\system\cache\builder;
/**
* Caches all chat rooms.
*
* @author Tim Düsterhus
2012-01-28 16:50:33 +00:00
* @copyright 2010-2012 Tim Düsterhus
2011-11-26 15:47:28 +00:00
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.wcf.chat
2011-11-26 15:47:28 +00:00
* @subpackage system.cache.builder
*/
class ChatRoomCacheBuilder implements ICacheBuilder {
/**
* @see \wcf\system\cache\ICacheBuilder::getData()
2011-11-26 15:47:28 +00:00
*/
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();
return $roomList;
2011-11-26 15:47:28 +00:00
}
}