* @package be.bastelstu.chat */ // @codingStandardsIgnoreFile final class Update { /** * Contains all the rooms the current installation has. * * @var array<\wcf\data\chat\room\ChatRoom> */ private $rooms = null; /** * 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\RoomCache::getInstance()->getRooms(); $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. * 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, 'message' => \wcf\system\WCF::getLanguage()->get('chat.general.information.chatUpdate') ) )); $messageAction->executeAction(); } foreach ($this->styles as $style) { \wcf\system\style\StyleHandler::getInstance()->resetStylesheet($style); } } } $update = new Update(); $update->execute();