This will allow admins to temporarily or permanantly enable and disable auto and manual payout processing. Fixes #488
29 lines
982 B
PHP
29 lines
982 B
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY')) die('Hacking attempt');
|
|
|
|
// Check user to ensure they are admin
|
|
if (!$user->isAuthenticated() || !$user->isAdmin($_SESSION['USERDATA']['id'])) {
|
|
header("HTTP/1.1 404 Page not found");
|
|
die("404 Page not found");
|
|
}
|
|
|
|
if (@$_REQUEST['do'] == 'save' && !empty($_REQUEST['data'])) {
|
|
foreach($_REQUEST['data'] as $var => $value) {
|
|
$setting->setValue($var, $value);
|
|
}
|
|
$_SESSION['POPUP'][] = array('CONTENT' => 'Settings updated');
|
|
}
|
|
|
|
// Fetch settings to propagate to template
|
|
$smarty->assign("MAINTENANCE", $setting->getValue('maintenance'));
|
|
$smarty->assign("LOCKREGISTRATION", $setting->getValue('lock_registration'));
|
|
$smarty->assign("DISABLEINVITATIONS", $setting->getValue('disable_invitations'));
|
|
$smarty->assign("DISABLEAP", $setting->getValue('disable_ap'));
|
|
$smarty->assign("DISABLEMP", $setting->getValue('disable_mp'));
|
|
|
|
// Tempalte specifics
|
|
$smarty->assign("CONTENT", "default.tpl");
|
|
?>
|