sbgg.jetzt/init.php

26 lines
428 B
PHP
Raw Normal View History

2024-02-08 14:57:45 +01:00
<?php
declare(strict_types = 1);
namespace Kimendisch\Sbgg_Jetzt;
2024-02-08 14:57:45 +01:00
// LOAD ENV CONFIG //
require_once("./.env.php");
2024-07-24 16:56:25 +02:00
// PREPARE CLASSES FOR STATE STORAGE //
// lang reference
class Lang_Ref {
public static object $dict;
}
2024-07-24 16:56:25 +02:00
// nav
class Nav {
public static ?string $active = null;
}
// footer
class Footer {
public static array $lang_href;
public static bool $cookieaccept_but_no_lang = false;
}
2024-02-08 14:57:45 +01:00
?>