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

16 lines
388 B
PHP
Raw Normal View History

2022-09-13 15:14:49 +02:00
<?php
namespace Misuzu;
if(!$msz->isLoggedIn() || !perms_check_user(MSZ_PERMS_GENERAL, $msz->getActiveUser()->getId(), MSZ_PERM_GENERAL_MANAGE_CONFIG)) {
2022-09-13 15:14:49 +02:00
echo render_error(403);
return;
}
2023-07-18 21:48:44 +00:00
$hidden = $cfg->getArray('settings.hidden');
$vars = $cfg->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
]);