1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/data/chat/room/ChatRoomEditor.class.php

65 lines
1.8 KiB
PHP
Raw Normal View History

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 be.bastelstu.wcf.chat
2011-11-27 19:20:13 +00:00
* @subpackage data.chat.room
*/
class ChatRoomEditor extends \wcf\data\DatabaseObjectEditor implements \wcf\data\IEditableCachedObject {
2011-11-27 19:20:13 +00:00
/**
* @see \wcf\data\DatabaseObjectDecorator::$baseClass
2011-11-27 19:20:13 +00:00
*/
protected static $baseClass = '\wcf\data\chat\room\ChatRoom';
2012-06-04 19:10:03 +00:00
2012-02-04 20:57:39 +00:00
/**
* @see \wcf\data\DatabaseObjectEditor::deleteAll()
2012-02-04 20:57:39 +00:00
*/
public static function deleteAll(array $objectIDs = array()) {
WCF::getDB()->beginTransaction();
foreach ($objectIDs as $objectID) {
\wcf\system\language\I18nHandler::getInstance()->remove('wcf.chat.room.title'.$objectID);
\wcf\system\language\I18nHandler::getInstance()->remove('wcf.chat.room.topic'.$objectID);
2012-02-04 20:57:39 +00:00
}
$sql = "SELECT
position
FROM
wcf".WCF_N."_chat_room
WHERE
roomID = ?
FOR UPDATE";
$select = WCF::getDB()->prepareStatement($sql);
$sql = "UPDATE
wcf".WCF_N."_chat_room
SET
position = position - 1
WHERE
position > ?";
$update = WCF::getDB()->prepareStatement($sql);
foreach ($objectIDs as $objectID) {
$select->execute(array($objectID));
$update->execute(array($select->fetchColumn()));
}
// The transaction is being committed in parent::deleteAll()
// The beginTransaction() call in there is simply ignored.
return parent::deleteAll($objectIDs);
2012-02-04 20:57:39 +00:00
}
/**
* Clears the room cache.
*/
public static function resetCache() {
\wcf\system\cache\CacheHandler::getInstance()->clear(WCF_DIR.'cache', 'cache.chatrooms.php');
}
2011-11-27 19:20:13 +00:00
}