forked from Adleraci/adlerka.top
dokelu
This commit is contained in:
25
pages/account/domov.php
Normal file
25
pages/account/domov.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
require_once "lib/router.php";
|
||||
|
||||
function get_parameters():array
|
||||
{
|
||||
return ["minimal_permission_level" => 1, "secret" => "no", "page_title" => "Domov"];
|
||||
}
|
||||
|
||||
function render(): string
|
||||
{
|
||||
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();
|
||||
}
|
Reference in New Issue
Block a user