1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-10-31 14:10:08 +00:00
Tims-Chat/file/acp/be.bastelstu.wcf.chat.update.php

57 lines
1.5 KiB
PHP
Raw Normal View History

<?php
namespace be\bastelstu\wcf\chat;
/**
* Handles updates of Tims Chat.
*
* @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
*/
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 = \wcf\data\chat\room\ChatRoom::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 \wcf\data\chat\message\ChatMessageAction(array(), 'create', array(
'data' => array(
'roomID' => $room->roomID,
'time' => TIME_NOW,
'type' => \wcf\data\chat\message\ChatMessage::TYPE_INFORMATION,
2012-03-04 14:42:57 +00:00
// TODO: Language item
'message' => 'Tims Chat was updated. Please refresh the page.'
)
));
$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();