mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-11-01 14:20:07 +00:00
66 lines
1.8 KiB
PHP
66 lines
1.8 KiB
PHP
<?php
|
|
namespace chat\data\room;
|
|
use \wcf\system\WCF;
|
|
|
|
/**
|
|
* Provides functions to edit chat rooms.
|
|
*
|
|
* @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 data.room
|
|
*/
|
|
class RoomEditor extends \wcf\data\DatabaseObjectEditor implements \wcf\data\IEditableCachedObject {
|
|
/**
|
|
* @see \wcf\data\DatabaseObjectDecorator::$baseClass
|
|
*/
|
|
protected static $baseClass = '\chat\data\room\Room';
|
|
|
|
|
|
/**
|
|
* @see \wcf\data\DatabaseObjectEditor::deleteAll()
|
|
*/
|
|
public static function deleteAll(array $objectIDs = array()) {
|
|
WCF::getDB()->beginTransaction();
|
|
foreach ($objectIDs as $objectID) {
|
|
\wcf\system\language\I18nHandler::getInstance()->remove('chat.room.title'.$objectID);
|
|
\wcf\system\language\I18nHandler::getInstance()->remove('chat.room.topic'.$objectID);
|
|
}
|
|
|
|
$sql = "SELECT
|
|
position
|
|
FROM
|
|
chat".WCF_N."_room
|
|
WHERE
|
|
roomID = ?
|
|
FOR UPDATE";
|
|
$select = WCF::getDB()->prepareStatement($sql);
|
|
|
|
$sql = "UPDATE
|
|
chat".WCF_N."_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);
|
|
}
|
|
|
|
/**
|
|
* Clears the room cache.
|
|
*/
|
|
public static function resetCache() {
|
|
\chat\system\cache\builder\RoomCacheBuilder::getInstance()->reset();
|
|
\chat\system\cache\builder\PermissionCacheBuilder::getInstance()->reset();
|
|
}
|
|
}
|