stylehub/pages/home/settings.php

24 lines
577 B
PHP
Raw Normal View History

2024-02-03 16:08:26 +01:00
<?php
require_once "lib/router.php";
require_once "lib/account.php";
2024-02-03 16:33:00 +01:00
return [
"output" =>
function () {
global $routerConfig;
2024-02-03 16:08:26 +01:00
2024-02-03 16:33:00 +01:00
if (isUserAdmin()) {
return file_get_contents($routerConfig["template_dir"] . "adminActions.html");
} else {
return file_get_contents($routerConfig["template_dir"] . "userActions.html");
}
},
"parameters" =>
[
"minimal_permission_level" => 2,
"secret" => "no",
"page_title" => "Account"
]
];