* @package timwolla.wcf.chat */ final class Update { private $rooms = null; public function __construct() { $this->rooms = \wcf\data\chat\room\ChatRoom::getCache(); } 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, 'message' => 'Tims Chat was updated. Please refresh the page.' ) )); $messageAction->executeAction(); } } } $update = new Update(); $update->execute();