21 lines
624 B
PHP
21 lines
624 B
PHP
<?php
|
|
/** @var array $CONFIG basic configurations (defined via bootstraping) */
|
|
/** @var array $SECRETS passwords and other stuff worth of protection (defined via bootstraping) */
|
|
require_once "bootstrap.php";
|
|
|
|
require_once "participoLib/participo.php";
|
|
require_once "participoLib/planer.php";
|
|
|
|
// @todo: Legacy libs! Remove!
|
|
require_once "./lib/api.php";
|
|
|
|
participo::init($CONFIG["cwsvJudo"], $SECRETS["cwsvJudo"]);
|
|
|
|
$userData = getUserData($_SESSION["user"]["userId"]);
|
|
|
|
$meta = [
|
|
"title" => "Event Planer",
|
|
"description" =>
|
|
"Planung von (Nicht-)Teilnahmen an Wettkämpfen und anderen Veranstaltungen",
|
|
];
|