1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/acp/be.bastelstu.chat.update.php

57 lines
1.5 KiB
PHP
Raw Normal View History

<?php
2013-05-03 20:13:58 +00:00
namespace be\bastelstu\chat;
/**
* Handles updates of Tims Chat.
*
* @author Tim Düsterhus
2013-01-19 19:36:40 +00:00
* @copyright 2010-2013 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
2013-01-19 19:36:40 +00:00
* @package be.bastelstu.chat
*/
2012-12-20 18:07:58 +00:00
// @codingStandardsIgnoreFile
final class Update {
/**
* Contains all the rooms the current installation has.
*
* @var array<\wcf\data\chat\room\ChatRoom>
*/
private $rooms = null;
2012-10-15 10:15:56 +00:00
/**
* Contains all the styles the current installation has.
*
* @var array<\wcf\data\style\Style>
*/
private $styles = null;
public function __construct() {
$this->rooms = \chat\data\room\Room::getCache();
2012-10-15 10:15:56 +00:00
$this->styles = \wcf\system\style\StyleHandler::getInstance()->getAvailableStyles();
}
/**
* Notifies users to refresh the chat as the JS may no longer be fully compatible with the PHP code.
2012-10-15 10:15:56 +00:00
* Resets styles.
*/
public function execute() {
foreach ($this->rooms as $room) {
$messageAction = new \chat\data\message\MessageAction(array(), 'create', array(
'data' => array(
'roomID' => $room->roomID,
'time' => TIME_NOW,
'type' => \chat\data\message\Message::TYPE_INFORMATION,
2012-10-20 16:04:46 +00:00
'message' => \wcf\system\WCF::getLanguage()->get('wcf.chat.information.chatUpdate')
)
));
$messageAction->executeAction();
}
2012-10-15 10:15:56 +00:00
foreach ($this->styles as $style) {
\wcf\system\style\StyleHandler::getInstance()->resetStylesheet($style);
}
}
}
$update = new Update();
$update->execute();