a70bb7b2b0
Cleaned up the themes folder since it did not need the additional folder depth to manage bundled scripts anymore. Updated the theme engine accordingly.
14 lines
253 B
PHP
14 lines
253 B
PHP
<?php
|
|
|
|
namespace engine;
|
|
|
|
class StartKit
|
|
{
|
|
public function __construct()
|
|
{
|
|
$config = json_decode(file_get_contents("./config.json"), true);
|
|
$theme = $config["current_theme"];
|
|
new ThemeEngine("themes/" . $theme);
|
|
}
|
|
}
|