mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
71 lines
2.6 KiB
Smarty
71 lines
2.6 KiB
Smarty
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename editAccess.tpl ##
|
|
## Developed by: aggenkeech ##
|
|
## License: TravianZ Project ##
|
|
## Copyright: TravianZ (c) 2010-2025. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
if($_SESSION['access'] < ADMIN) die("Access Denied: You are not Admin!");
|
|
$id = (int) $_SESSION['id'];
|
|
if(isset($_GET['uid']))
|
|
{
|
|
$sql = mysqli_query($GLOBALS["link"], "SELECT access FROM ".TB_PREFIX."users WHERE id = ".(int) $_GET['uid']."");
|
|
$curaccess = mysqli_result($sql, 0);
|
|
$player = mysqli_fetch_assoc(mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."users WHERE id = ".$id.""));
|
|
?>
|
|
|
|
<form action="../GameEngine/Admin/Mods/editAccess.php" method="POST">
|
|
<input type="hidden" name="admid" id="admid" value="<?php echo $_SESSION['id']; ?>">
|
|
<input type="hidden" name="uid" id="uid" value="<?php echo $_GET['uid']; ?>">
|
|
<table id="member" style="width:300px;">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">Edit <?php echo $player['username']; ?>'s access</th>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<center>
|
|
<b>Change Access</b>
|
|
</center>
|
|
</td>
|
|
<td>
|
|
<center>
|
|
<select name="access" class="dropdown">
|
|
<option value="0" <?php if($curaccess == 0) { echo 'selected="selected"'; } else { echo ''; } ?>>Banned</option>
|
|
<option value="2" <?php if($curaccess == 2) { echo 'selected="selected"'; } else { echo ''; } ?>>Normal User</option>
|
|
<option value="8" <?php if($curaccess == 8) { echo 'selected="selected"'; } else { echo ''; } ?>>Multihunter</option>
|
|
<option value="9" <?php if($curaccess == 9) { echo 'selected="selected"'; } else { echo ''; } ?>>Admin</option>
|
|
</select>
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<center>
|
|
<input type="image" src="../img/admin/b/ok1.gif" value="submit" title="Give Players Free Gold">
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form><?php
|
|
if(isset($_GET['g']))
|
|
{
|
|
echo '<br /><br /><font color="Red"><b>Players Access Changed</font></b>';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
include("404.tpl");
|
|
}
|
|
?> |