60 lines
2.2 KiB
PHP
60 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once dirname(__DIR__, 3) . '/src/App/bootstrap.php';
|
|
require_once dirname(__DIR__) . '/bootstrap.php';
|
|
|
|
use ModulesCore\ModuleHttp;
|
|
|
|
session_start();
|
|
|
|
$projectRoot = dirname(__DIR__, 3);
|
|
ModuleHttp::requireDesktopAccess($projectRoot);
|
|
|
|
$design = [];
|
|
$designRaw = is_file(dirname(__DIR__) . '/design.json') ? file_get_contents(dirname(__DIR__) . '/design.json') : false;
|
|
if ($designRaw !== false) {
|
|
$decoded = json_decode($designRaw, true);
|
|
$design = is_array($decoded) ? $decoded : [];
|
|
}
|
|
|
|
$assetVersion = static function (string $relativePath): string {
|
|
$fullPath = dirname(__DIR__) . '/' . ltrim($relativePath, '/');
|
|
$mtime = is_file($fullPath) ? filemtime($fullPath) : false;
|
|
return $mtime === false ? '0' : (string) $mtime;
|
|
};
|
|
|
|
$sections = is_array($design['sections'] ?? null) ? $design['sections'] : [];
|
|
$activeView = trim((string) ($_GET['view'] ?? 'overview'));
|
|
$sectionKeys = array_values(array_filter(array_map(
|
|
static fn (mixed $section): string => is_array($section) ? trim((string) ($section['key'] ?? '')) : '',
|
|
$sections
|
|
)));
|
|
if ($sectionKeys === []) {
|
|
$sectionKeys = ['overview'];
|
|
}
|
|
if (!in_array($activeView, $sectionKeys, true)) {
|
|
$activeView = $sectionKeys[0];
|
|
}
|
|
$sectionsJson = json_encode($sections, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);
|
|
?><!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Waehrungs-Checker</title>
|
|
<link rel="stylesheet" href="/assets/desktop/desktop.css">
|
|
<link rel="stylesheet" href="/module-assets/index.php?module=fx-rates&path=assets/css/app.css&v=<?= htmlspecialchars($assetVersion('assets/css/app.css'), ENT_QUOTES) ?>">
|
|
</head>
|
|
<body>
|
|
<div
|
|
id="fx-rates-app"
|
|
data-api-base="/api/fx-rates/index.php?path=v1"
|
|
data-active-view="<?= htmlspecialchars($activeView, ENT_QUOTES) ?>"
|
|
data-sections-json="<?= htmlspecialchars(is_string($sectionsJson) ? $sectionsJson : '[]', ENT_QUOTES) ?>"
|
|
></div>
|
|
<script src="/module-assets/index.php?module=fx-rates&path=assets/js/app.js&v=<?= htmlspecialchars($assetVersion('assets/js/app.js'), ENT_QUOTES) ?>"></script>
|
|
</body>
|
|
</html>
|