mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
Extend HourlyCleanUpCronjob instead of an own cronjob
This commit is contained in:
parent
e752a58ff7
commit
4bc538f367
17
cronjob.xml
17
cronjob.xml
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<data xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/maelstrom/cronjob.xsd">
|
||||
<import>
|
||||
<cronjob>
|
||||
<classname>chat\system\cronjob\CleanupCronjob</classname>
|
||||
<description>Cleans up Tims Chat</description>
|
||||
<startminute>*/15</startminute>
|
||||
<starthour>*</starthour>
|
||||
<startdom>*</startdom>
|
||||
<startmonth>*</startmonth>
|
||||
<startdow>*</startdow>
|
||||
<active>1</active>
|
||||
<canbeedited>1</canbeedited>
|
||||
<canbedisabled>0</canbedisabled>
|
||||
</cronjob>
|
||||
</import>
|
||||
</data>
|
17
eventListener.xml
Normal file
17
eventListener.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<data xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/maelstrom/eventListener.xsd">
|
||||
<import>
|
||||
<eventlistener>
|
||||
<eventclassname>wcf\system\cronjob\DailyCleanUpCronjob</eventclassname>
|
||||
<eventname>execute</eventname>
|
||||
<listenerclassname>chat\system\event\listener\HourlyCleanUpCronjobExecuteChatCleanUpListener</listenerclassname>
|
||||
<environment>user</environment>
|
||||
</eventlistener>
|
||||
<eventlistener>
|
||||
<eventclassname>wcf\system\cronjob\DailyCleanUpCronjob</eventclassname>
|
||||
<eventname>execute</eventname>
|
||||
<listenerclassname>chat\system\event\listener\HourlyCleanUpCronjobExecuteChatCleanUpListener</listenerclassname>
|
||||
<environment>admin</environment>
|
||||
</eventlistener>
|
||||
</import>
|
||||
</data>
|
@ -1,28 +1,28 @@
|
||||
<?php
|
||||
namespace chat\system\cronjob;
|
||||
use \chat\data;
|
||||
|
||||
/**
|
||||
* Vaporizes unneeded data.
|
||||
*
|
||||
* @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 system.cronjob
|
||||
*/
|
||||
class CleanupCronjob implements \wcf\system\cronjob\ICronjob {
|
||||
/**
|
||||
* @see wcf\system\ICronjob::execute()
|
||||
*/
|
||||
public function execute(\wcf\data\cronjob\Cronjob $cronjob) {
|
||||
$messageAction = new data\message\MessageAction(array(), 'prune');
|
||||
$messageAction->executeAction();
|
||||
$roomAction = new data\room\RoomAction(array(), 'prune');
|
||||
$roomAction->executeAction();
|
||||
|
||||
// kill dead users
|
||||
$roomAction = new data\room\RoomAction(array(), 'removeDeadUsers');
|
||||
$roomAction->executeAction();
|
||||
}
|
||||
}
|
||||
<?php
|
||||
namespace chat\system\event\listener;
|
||||
use \chat\data;
|
||||
|
||||
/**
|
||||
* Vaporizes unneeded data.
|
||||
*
|
||||
* @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 system.event.listener
|
||||
*/
|
||||
class HourlyCleanUpCronjobExecuteChatCleanUpListener implements IEventListener {
|
||||
/**
|
||||
* @see \wcf\system\event\IEventListener::execute()
|
||||
*/
|
||||
public function execute($eventObj, $className, $eventName) {
|
||||
$messageAction = new data\message\MessageAction(array(), 'prune');
|
||||
$messageAction->executeAction();
|
||||
$roomAction = new data\room\RoomAction(array(), 'prune');
|
||||
$roomAction->executeAction();
|
||||
|
||||
// kill dead users
|
||||
$roomAction = new data\room\RoomAction(array(), 'removeDeadUsers');
|
||||
$roomAction->executeAction();
|
||||
}
|
||||
}
|
@ -34,7 +34,7 @@
|
||||
<instruction type="aclOption">aclOption.xml</instruction>
|
||||
<instruction type="acpMenu">acpMenu.xml</instruction>
|
||||
<instruction type="userGroupOption">userGroupOption.xml</instruction>
|
||||
<instruction type="cronjob">cronjob.xml</instruction>
|
||||
<instruction type="eventListener">eventListener.xml</instruction>
|
||||
<instruction type="dashboardBox">dashboardBox.xml</instruction>
|
||||
<instruction type="script" run="standalone">acp/be.bastelstu.chat.install.php</instruction>
|
||||
</instructions>
|
||||
@ -51,6 +51,7 @@
|
||||
<instruction type="aclOption">aclOption.xml</instruction>
|
||||
<instruction type="acpMenu">acpMenu.xml</instruction>
|
||||
<instruction type="userGroupOption">userGroupOption.xml</instruction>
|
||||
<instruction type="eventListener">eventListener.xml</instruction>
|
||||
<instruction type="dashboardBox">dashboardBox.xml</instruction>
|
||||
<instruction type="script" run="standalone">acp/be.bastelstu.chat.update.php</instruction>
|
||||
</instructions>
|
||||
|
Loading…
Reference in New Issue
Block a user