sbgg.jetzt/meta.php

29 lines
622 B
PHP
Raw Normal View History

2023-04-22 17:31:48 +02:00
<?php
// VERSION //
2023-12-20 20:35:23 +01:00
static::$version = "1.0.40";
2023-04-22 17:31:48 +02:00
// DEPENDENCIES //
// used extensions
2023-09-11 16:27:51 +02:00
static::$ext[] = "lang";
static::$ext[] = "page";
static::$ext[] = "file";
static::$ext[] = "hidden";
static::$ext[] = "project";
2023-04-22 17:31:48 +02:00
// ROUTES //
2023-09-11 21:10:57 +02:00
// redirect to main domain
$redirect = [
["path" => "**", "target" => "page/redirect"]
2023-04-22 17:31:48 +02:00
];
2023-09-11 21:10:57 +02:00
static::$route["www.sbgg.jetzt"] = $redirect;
static::$route["selbstbestimmungsgesetz-jetzt.de"] = $redirect;
static::$route["www.selbstbestimmungsgesetz-jetzt.de"] = $redirect;
2023-04-22 17:31:48 +02:00
2023-09-11 21:10:57 +02:00
// pages
static::$route["sbgg.jetzt"] = [
2023-04-22 17:31:48 +02:00
["path" => "", "target" => "page/start"]
];
?>