Initial commit from online.

This commit is contained in:
2023-12-28 12:13:55 +01:00
commit b65644f3e0
235 changed files with 4060 additions and 0 deletions

17
admin/kal.php Normal file
View File

@@ -0,0 +1,17 @@
<h1>Kalenderfunktionen</h1>
<?php
if (!isset($_GET['t'])) {
include "inhalte/kal/standard.php";
} else {
if ('saison' == $_GET['t']) {
include "inhalte/kal/saison.php";
} elseif ('gaby' == $_GET['t']) {
include "inhalte/kal/gaby.php";
} elseif ('amelie' == $_GET['t']) {
include "inhalte/kal/amelie.php";
} else {
include "inhalte/kal/standard.php";
}
}