fipamothemekit/index.php

113 lines
3.2 KiB
PHP
Raw Normal View History

<?php
require "vendor/autoload.php";
class StartKit
{
public function __construct()
{
$settings = json_decode(file_get_contents("./package.json"), true);
$theme = $settings["config"]["current_theme"];
new ThemeEngine(
"src/themes/theme-" . $theme,
"/src/themes/theme-" . $theme . "/" . $theme
);
}
}
class ThemeEngine
{
public $data = [];
public $loader;
public $twig;
2021-06-03 22:08:01 +02:00
public function __construct(string $themePath, string $themeAssetPath)
{
2021-06-03 22:08:01 +02:00
$this->themePath = $themePath;
$this->themeAssetPath = $themeAssetPath;
$path = explode("/", $themeAssetPath);
$this->themeFolder = $path[4];
$this->data = json_decode(file_get_contents("./config.json"), true);
2021-06-03 22:08:01 +02:00
$this->loader = new \Twig\Loader\FilesystemLoader($themePath);
$this->twig = new \Twig\Environment($this->loader, []);
$this->router($_SERVER["REQUEST_URI"]);
}
public function router(string $request)
{
$pageInfo = [
"keywords" => $this->data["keywords"],
"description" => $this->data["description"],
2021-06-03 22:08:01 +02:00
"image" => $this->themeAssetPath . "/assets/images/global/default-bg.jpg",
];
$menu = $this->data["menu"];
switch ($request) {
case "/":
$recent = $this->data["recent_posts"];
$featured = $this->data["featured_posts"];
2021-06-03 22:08:01 +02:00
$template = $this->themeFolder . "/index.twig";
$pageOptions = [
"debug" => true,
"title" => "This is Fipamo",
"background" =>
2021-06-03 22:08:01 +02:00
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
"recent" => $recent,
"featured" => $featured,
"info" => $pageInfo,
"menu" => $menu,
];
break;
case "/page":
$content = $this->data["content"];
$meta = $this->data["meta"];
2021-06-03 22:08:01 +02:00
$template = $this->themeFolder . "/page.twig";
$pageOptions = [
"debug" => true,
"title" => "Page Title",
"background" =>
2021-06-03 22:08:01 +02:00
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
"content" => $content,
"meta" => $meta,
"info" => $pageInfo,
"menu" => $menu,
];
break;
2021-04-21 21:47:15 +02:00
case "/tags":
$tags = $this->data["tag_list"];
2021-06-03 22:08:01 +02:00
$template = $this->themeFolder . "/tags.twig";
$pageOptions = [
"debug" => true,
"title" => "Pages Tagged as Tag",
"background" =>
2021-06-03 22:08:01 +02:00
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
"tag_list" => $tags,
"info" => $pageInfo,
"menu" => $menu,
];
break;
case "/archive":
$archive = $this->data["archives"];
2021-06-03 22:08:01 +02:00
$template = $this->themeFolder . "/archive.twig";
$pageOptions = [
"debug" => true,
"title" => "Archive",
"background" =>
2021-06-03 22:08:01 +02:00
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
"archives" => $archive,
"info" => $pageInfo,
"menu" => $menu,
];
break;
default:
http_response_code(404);
require __DIR__ . "/views/404.php";
break;
}
echo $this->twig->render($template, $pageOptions);
}
}
new StartKit();