mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
35 lines
828 B
PHP
35 lines
828 B
PHP
|
<?php
|
||
|
namespace be\bastelstu\wcf\chat;
|
||
|
|
||
|
/**
|
||
|
* Handles installation 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 Install {
|
||
|
/**
|
||
|
* Contains all the styles the current installation has.
|
||
|
*
|
||
|
* @var array<\wcf\data\style\Style>
|
||
|
*/
|
||
|
private $styles = null;
|
||
|
|
||
|
public function __construct() {
|
||
|
$this->styles = \wcf\system\style\StyleHandler::getInstance()->getAvailableStyles();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Resets styles.
|
||
|
*/
|
||
|
public function execute() {
|
||
|
foreach ($this->styles as $style) {
|
||
|
\wcf\system\style\StyleHandler::getInstance()->resetStylesheet($style);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
$install = new Install();
|
||
|
$install->execute();
|