mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-11-01 14:20:07 +00:00
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
|
<?php
|
||
|
namespace wcf\data\chat\suspension;
|
||
|
|
||
|
/**
|
||
|
* Executes chat-suspension-related actions.
|
||
|
*
|
||
|
* @author Tim Düsterhus
|
||
|
* @copyright 2010-2012 Tim Düsterhus
|
||
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
||
|
* @package be.bastelstu.wcf.chat
|
||
|
* @subpackage data.chat.suspension
|
||
|
*/
|
||
|
class ChatSuspensionAction extends \wcf\data\AbstractDatabaseObjectAction {
|
||
|
/**
|
||
|
* @see \wcf\data\AbstractDatabaseObjectAction::$className
|
||
|
*/
|
||
|
protected $className = '\wcf\data\chat\suspension\ChatSuspensionEditor';
|
||
|
|
||
|
/**
|
||
|
* Deletes expired suspensions.
|
||
|
*
|
||
|
* @return integer Number of deleted suspensions
|
||
|
*/
|
||
|
public function prune() {
|
||
|
$sql = "SELECT
|
||
|
".call_user_func(array($this->className, 'getDatabaseTableIndexName'))."
|
||
|
FROM
|
||
|
".call_user_func(array($this->className, 'getDatabaseTableName'))."
|
||
|
WHERE
|
||
|
time < ?";
|
||
|
$stmt = \wcf\system\WCF::getDB()->prepareStatement($sql);
|
||
|
$stmt->execute(array(TIME_NOW));
|
||
|
$objectIDs = array();
|
||
|
while ($objectIDs[] = $stmt->fetchColumn());
|
||
|
|
||
|
return call_user_func(array($this->className, 'deleteAll'), $objectIDs);
|
||
|
}
|
||
|
}
|