adlerka.top/pages/global/account.php

25 lines
564 B
PHP
Raw Normal View History

2024-01-16 19:24:40 +01:00
<?php
2024-01-18 11:49:38 +01:00
require_once "lib/router.php";
2024-01-16 20:43:57 +01:00
2024-02-01 09:10:55 +01:00
function get_parameters():array
{
2024-02-01 10:08:45 +01:00
return ["minimal_permission_level" => 0, "secret" => "no", "page_title" => "Domov"];
2024-02-01 09:10:55 +01:00
}
function render(): string
2024-01-16 20:43:57 +01:00
{
global $routerConfig;
ob_start();
if ($_SESSION["ID"] > 0) {
$account_template = file_get_contents($routerConfig["template_dir"] . "account.html");
echo $account_template;
} else {
$login_template = file_get_contents($routerConfig["template_dir"] . "login.html");
echo $login_template;
}
return ob_get_clean();
}