fipamothemekit/engine/StartKit.php
are0h a70bb7b2b0 Theme folder clean up
Cleaned up the themes folder since it did not need the additional folder
depth to manage bundled scripts anymore. Updated the theme engine
accordingly.
2023-04-06 20:07:02 -07:00

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);
}
}