This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
misuzu-interim/public-legacy/manage/general/settings.php

17 lines
466 B
PHP
Raw Normal View History

2022-09-13 15:14:49 +02:00
<?php
namespace Misuzu;
2024-12-02 02:28:08 +00:00
if(!isset($msz) || !($msz instanceof \Misuzu\MisuzuContext))
die('Script must be called through the Misuzu route dispatcher.');
if(!$msz->authInfo->getPerms('global')->check(Perm::G_CONFIG_MANAGE))
Template::throwError(403);
2022-09-13 15:14:49 +02:00
2024-12-02 02:28:08 +00:00
$hidden = $msz->config->getArray('settings.hidden');
$vars = $msz->config->getAllValueInfos();
2022-09-13 15:14:49 +02:00
Template::render('manage.general.settings', [
2023-07-18 21:48:44 +00:00
'config_vars' => $vars,
'config_hidden' => $hidden,
2022-09-13 15:14:49 +02:00
]);