sbgg.jetzt/init.php

26 lines
428 B
PHP

<?php
declare(strict_types = 1);
namespace Kimendisch\Sbgg_Jetzt;
// LOAD ENV CONFIG //
require_once("./.env.php");
// PREPARE CLASSES FOR STATE STORAGE //
// lang reference
class Lang_Ref {
public static object $dict;
}
// nav
class Nav {
public static ?string $active = null;
}
// footer
class Footer {
public static array $lang_href;
public static bool $cookieaccept_but_no_lang = false;
}
?>