2011-11-27 19:20:13 +00:00
|
|
|
<?php
|
|
|
|
namespace wcf\data\chat\room;
|
2012-02-04 20:57:39 +00:00
|
|
|
use \wcf\system\WCF;
|
2011-11-27 19:20:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides functions to edit chat rooms.
|
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
2012-01-28 16:50:33 +00:00
|
|
|
* @copyright 2010-2012 Tim Düsterhus
|
2011-11-27 19:20:13 +00:00
|
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
|
|
|
* @package timwolla.wcf.chat
|
|
|
|
* @subpackage data.chat.room
|
|
|
|
*/
|
2011-12-13 21:18:04 +00:00
|
|
|
class ChatRoomEditor extends \wcf\data\DatabaseObjectEditor implements \wcf\data\IEditableCachedObject {
|
2011-11-27 19:20:13 +00:00
|
|
|
/**
|
2012-02-26 16:55:44 +00:00
|
|
|
* @see \wcf\data\DatabaseObjectDecorator::$baseClass
|
2011-11-27 19:20:13 +00:00
|
|
|
*/
|
|
|
|
protected static $baseClass = '\wcf\data\chat\room\ChatRoom';
|
|
|
|
|
|
|
|
/**
|
2011-12-13 21:18:04 +00:00
|
|
|
* Clears the room cache.
|
2011-11-27 19:20:13 +00:00
|
|
|
*/
|
2011-12-13 21:18:04 +00:00
|
|
|
public static function resetCache() {
|
2012-02-26 17:16:28 +00:00
|
|
|
\wcf\system\cache\CacheHandler::getInstance()->clear(WCF_DIR.'cache', 'cache.chatrooms.php');
|
2011-11-27 19:20:13 +00:00
|
|
|
}
|
2012-02-04 20:57:39 +00:00
|
|
|
|
|
|
|
/**
|
2012-02-26 16:55:44 +00:00
|
|
|
* @see \wcf\data\DatabaseObjectEditor::deleteAll()
|
2012-02-04 20:57:39 +00:00
|
|
|
*/
|
|
|
|
public static function deleteAll(array $objectIDs = array()) {
|
|
|
|
parent::deleteAll($objectIDs);
|
|
|
|
$packageID = \wcf\system\package\PackageDependencyHandler::getPackageID('timwolla.wcf.chat');
|
|
|
|
|
|
|
|
WCF::getDB()->beginTransaction();
|
|
|
|
foreach ($objectIDs as $objectID) {
|
2012-02-05 17:29:16 +00:00
|
|
|
\wcf\system\language\I18nHandler::getInstance()->remove('wcf.chat.room.title'.$objectID, $packageID);
|
|
|
|
\wcf\system\language\I18nHandler::getInstance()->remove('wcf.chat.room.topic'.$objectID, $packageID);
|
2012-02-04 20:57:39 +00:00
|
|
|
}
|
|
|
|
WCF::getDB()->commitTransaction();
|
|
|
|
|
|
|
|
return count($objectIDs);
|
|
|
|
}
|
2011-11-27 19:20:13 +00:00
|
|
|
}
|