2011-03-28 14:21:28 +00:00
|
|
|
<?
|
|
|
|
//TODO: Redo html
|
|
|
|
if (!check_perms('admin_manage_permissions')) { error(403); }
|
|
|
|
if(!isset($_REQUEST['userid']) || !is_number($_REQUEST['userid'])){ error(404); }
|
|
|
|
|
|
|
|
include(SERVER_ROOT."/classes/permissions_form.php");
|
|
|
|
|
|
|
|
list($UserID, $Username, $PermissionID) = array_values(user_info($_REQUEST['userid']));
|
|
|
|
|
|
|
|
$DB->query("SELECT
|
|
|
|
u.CustomPermissions
|
|
|
|
FROM users_main AS u
|
|
|
|
WHERE u.ID='$UserID'");
|
|
|
|
|
2011-08-09 21:03:28 +00:00
|
|
|
list($Customs)=$DB->next_record(MYSQLI_NUM, false);
|
2011-03-28 14:21:28 +00:00
|
|
|
|
|
|
|
|
2011-08-09 21:03:28 +00:00
|
|
|
$Defaults = get_permissions_for_user($UserID, array());
|
2011-03-28 14:21:28 +00:00
|
|
|
|
|
|
|
$Delta=array();
|
|
|
|
if (isset($_POST['action'])) {
|
|
|
|
authorize();
|
|
|
|
|
|
|
|
foreach ($PermissionsArray as $Perm => $Explaination) {
|
|
|
|
$Setting = (isset($_POST['perm_'.$Perm]))?1:0;
|
|
|
|
$Default = (isset($Defaults[$Perm]))?1:0;
|
|
|
|
if ($Setting != $Default) {
|
|
|
|
$Delta[$Perm] = $Setting;
|
|
|
|
}
|
|
|
|
}
|
2011-10-27 08:00:15 +00:00
|
|
|
if (!is_number($_POST['maxcollages']) && !empty($_POST['maxcollages'])) { error("Please enter a valid number of extra personal collages"); }
|
|
|
|
$Delta['MaxCollages'] = $_POST['maxcollages'];
|
|
|
|
|
2011-03-28 14:21:28 +00:00
|
|
|
$Cache->begin_transaction('user_info_heavy_'.$UserID);
|
|
|
|
$Cache->update_row(false, array('CustomPermissions' => $Delta));
|
|
|
|
$Cache->commit_transaction(0);
|
|
|
|
$DB->query("UPDATE users_main SET CustomPermissions='".db_string(serialize($Delta))."' WHERE ID='$UserID'");
|
|
|
|
} elseif (!empty($Customs)) {
|
|
|
|
$Delta = unserialize($Customs);
|
|
|
|
}
|
|
|
|
|
|
|
|
$Permissions = array_merge($Defaults,$Delta);
|
2011-10-27 08:00:15 +00:00
|
|
|
$MaxCollages = $Customs['MaxCollages'] + $Delta['MaxCollages'];
|
2011-03-28 14:21:28 +00:00
|
|
|
|
|
|
|
function display_perm($Key,$Title) {
|
|
|
|
global $Defaults, $Permissions;
|
|
|
|
$Perm='<input id="default_'.$Key.'" type="checkbox" disabled';
|
|
|
|
if (isset($Defaults[$Key]) && $Defaults[$Key]) { $Perm.=' checked'; }
|
|
|
|
$Perm.=' /><input type="checkbox" name="perm_'.$Key.'" id="'.$Key.'" value="1"';
|
|
|
|
if (isset($Permissions[$Key]) && $Permissions[$Key]) { $Perm.=' checked'; }
|
|
|
|
$Perm.=' /> <label for="'.$Key.'">'.$Title.'</label><br />';
|
|
|
|
echo $Perm;
|
|
|
|
}
|
|
|
|
|
|
|
|
show_header($Username.' > Permissions');
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function reset() {
|
|
|
|
for (i = 0; i < $('#permform').raw().elements.length; i++) {
|
|
|
|
element = $('#permform').raw().elements[i];
|
|
|
|
if (element.id.substr(0,8) == 'default_') {
|
|
|
|
$('#' + element.id.substr(8)).raw().checked = element.checked;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<h2><?=format_username($UserID,$Username)?> > Permissions</h2>
|
|
|
|
<div class="linkbox">
|
|
|
|
[<a href="#" onclick="reset();return false;">Defaults</a>]
|
|
|
|
</div>
|
|
|
|
<div class="box pad">
|
2011-08-09 21:03:28 +00:00
|
|
|
Before using permissions, please understand that it allows you to both add and remove access to specific features. If you think that to add access to a feature, you need to uncheck everything else, <strong>YOU ARE WRONG</strong>. The checkmarks on the left, which are grayed out, are the standard permissions granted by their class (and donor/artist status), any changes you make to the right side will overwrite this. It's not complicated, and if you screw up, click the defaults link at the top. It will reset the user to their respective features granted by class, then you can check or uncheck the one or two things you want to change. <strong>DO NOT UNCHECK EVERYTHING.</strong> If you need further clarification, ask A9 before using this tool.
|
2011-03-28 14:21:28 +00:00
|
|
|
</div>
|
2011-10-27 08:00:15 +00:00
|
|
|
<br />
|
|
|
|
|
2011-03-28 14:21:28 +00:00
|
|
|
<form name="permform" id="permform" method="post" action="">
|
2011-10-27 08:00:15 +00:00
|
|
|
<table class="permission_head">
|
|
|
|
<tr>
|
|
|
|
<td class="label">Extra personal collages</td>
|
|
|
|
<td><input type="text" name="maxcollages" size="5" value="<?=($MaxCollages?$MaxCollages:'0')?>" /></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2011-03-28 14:21:28 +00:00
|
|
|
<input type="hidden" name="action" value="permissions" />
|
|
|
|
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
|
|
|
|
<input type="hidden" name="id" value="<?=$_REQUEST['userid']?>" />
|
|
|
|
<?
|
|
|
|
permissions_form();
|
|
|
|
?>
|
|
|
|
</form>
|
|
|
|
<? show_footer(); ?>
|