mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-27 21:57:16 +00:00
fix ban system 100% + replace the previous fix with better one + new admin panel by ZravianX version
This commit is contained in:
+25
-149
@@ -11,249 +11,135 @@
|
||||
?>
|
||||
<?php
|
||||
$id = $_GET['uid'];
|
||||
|
||||
if(isset($id)){
|
||||
|
||||
$user = $database->getUserArray($id,1);
|
||||
|
||||
$varray = $database->getProfileVillages($id);
|
||||
|
||||
if($user){
|
||||
|
||||
$totalpop = 0;
|
||||
|
||||
foreach($varray as $vil) {
|
||||
|
||||
$totalpop += $vil['pop'];
|
||||
|
||||
}
|
||||
|
||||
include('search2.tpl');
|
||||
|
||||
?>
|
||||
|
||||
<?php
|
||||
|
||||
$deletion = false;
|
||||
|
||||
if($deletion){
|
||||
|
||||
?>
|
||||
|
||||
<table id="member" cellpadding="1" cellspacing="1">
|
||||
|
||||
<tr>
|
||||
|
||||
<td>The account will be deleted in <span class="c2">79:56:11</span>
|
||||
|
||||
<a href="?action=StopDel&uid=<?php echo $user['id'];?>" onClick="return del('stopDel','<?php echo $user['username'];?>');"><img src="img/x.gif" class="del"></a>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<?php
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<br>
|
||||
|
||||
<table id="profile" cellpadding="1" cellspacing="1" >
|
||||
|
||||
<thead>
|
||||
|
||||
<tr>
|
||||
|
||||
<th colspan="2">Player <a href="admin.php?p=player&uid=<?php echo $user['id'];?>"><?php echo $user['username'];?></a></th>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td>Details</td>
|
||||
|
||||
<td>Description</td>
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
|
||||
</thead><tbody>
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="empty"></td><td class="empty"></td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="details">
|
||||
|
||||
<table cellpadding="0" cellspacing="0">
|
||||
|
||||
<tr>
|
||||
|
||||
|
||||
|
||||
<th>Rank</th>
|
||||
|
||||
<td><?php //echo $ranking->searchRank($displayarray['username'],"username"); ?></td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<th>Tribe</th>
|
||||
|
||||
<td><?php
|
||||
|
||||
if($user['tribe'] == 1) {
|
||||
|
||||
echo "Roman";
|
||||
|
||||
}
|
||||
|
||||
else if($user['tribe'] == 2) {
|
||||
|
||||
echo "Teutons";
|
||||
|
||||
}
|
||||
|
||||
else if($user['tribe'] == 3) {
|
||||
|
||||
echo "Gauls";
|
||||
|
||||
}
|
||||
|
||||
else if($user['tribe'] == 4) {
|
||||
|
||||
echo "Natars";
|
||||
|
||||
} ?></td>
|
||||
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<th>Alliance</th>
|
||||
|
||||
<td>
|
||||
|
||||
<?php if($user['alliance'] == 0) {
|
||||
|
||||
echo "-";
|
||||
|
||||
echo "Nature";
|
||||
}
|
||||
|
||||
else {
|
||||
|
||||
echo "<a href=\"?p=alliance&aid=".$user['alliance']."\">".$database->getAllianceName($user['alliance'])."</a>";
|
||||
|
||||
} ?>
|
||||
|
||||
</td>
|
||||
|
||||
else if($user['tribe'] == 5) {
|
||||
echo "Natars";
|
||||
} ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<th>Alliance</th>
|
||||
<td>
|
||||
<?php if($user['alliance'] == 0) {
|
||||
echo "-";
|
||||
}
|
||||
else {
|
||||
echo "<a href=\"?p=alliance&aid=".$user['alliance']."\">".$database->getAllianceName($user['alliance'])."</a>";
|
||||
} ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Villages</th>
|
||||
|
||||
<td><?php echo count($varray);?></td>
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<th>Population</th>
|
||||
|
||||
<td><?php echo $totalpop;?> <a href="?action=recountPopUsr&uid=<?php echo $user['id'];?>">Recount</a></td>
|
||||
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
|
||||
if(isset($user['birthday']) && $user['birthday'] != 0) {
|
||||
|
||||
$age = date("Y")-substr($user['birthday'],0,4);
|
||||
|
||||
echo "<tr><th>Age</th><td>$age</td></tr>";
|
||||
|
||||
}
|
||||
|
||||
if(isset($user['gender']) && $user['gender'] != 0) {
|
||||
|
||||
$gender = ($user['gender']== 1)? "Male" : "Female";
|
||||
|
||||
echo "<tr><th>Gender</th><td>".$gender."</td></tr>";
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
echo "<tr><th>Location</th><td><input disabled class=\"fm\" name=\"location\" value=\"".$user['location']."\"></td></tr>";
|
||||
|
||||
echo "<tr><th><b><font color='#71D000'>P</font><font color='#FF6F0F'>l</font><font color='#71D000'>u</font><font color='#FF6F0F'>s</font></b></th><td>";
|
||||
if(date('d.m.Y H:i',$user['plus']) == '01.01.1970 00:00') {
|
||||
echo "Not enabled!</tr></th>";
|
||||
} else { echo "".date('d.m.Y H:i',$user['plus']+3600*2)."</tr></th>"; }
|
||||
|
||||
echo "<tr><th>Email</th><td><input disabled class=\"fm\" name=\"email\" value=\"".$user['email']."\"></td></tr>";
|
||||
|
||||
echo '<tr><td colspan="2" class="empty"></td></tr>';
|
||||
|
||||
|
||||
if($_SESSION['access'] == ADMIN){
|
||||
echo '<tr><td colspan="2"><a href="?p=editUser&uid='.$user['id'].'">» Change profile</a></td></tr>';
|
||||
} else if($_SESSION['access'] == MULTIHUNTER){
|
||||
echo '';
|
||||
}
|
||||
echo '<tr><td colspan="2"> <a href="nachrichten.php?t=1&id='.$user['id'].'">» Write message</a></td></tr>';
|
||||
|
||||
echo '<tr><td colspan="2"> <a href="?p=Newmessage&uid='.$user['id'].'">» Write message</a></td></tr>';
|
||||
|
||||
if($_SESSION['access'] == ADMIN){
|
||||
echo '<tr><td colspan="2"> <a class="rn3" href="?p=deletion&uid='.$user['id'].'">» Delete player</a></td></tr>';
|
||||
} else if($_SESSION['access'] == MULTIHUNTER){
|
||||
echo '';
|
||||
}
|
||||
|
||||
|
||||
echo '<tr><td colspan="2"> <a href="?p=ban&uid='.$user['id'].'">» Ban</a></td></tr>';
|
||||
|
||||
echo '<tr><td colspan="2" class="desc2"><div class="desc2div"><center>'.nl2br($user['desc1']).'</center></div></td></tr>';
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
<td class="desc1">
|
||||
<center><?php echo nl2br($user['desc2']); ?></center>
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
<!-- ADDITIONAL USER INFORMATION -->
|
||||
<table id="member">
|
||||
<thead>
|
||||
@@ -281,10 +167,10 @@ if($deletion){
|
||||
<td>Remaining gold</td>
|
||||
<td><?php
|
||||
if($user['gold'] == 0){ ?>
|
||||
This user has no gold! (<img src='../img/admin/gold_g.gif' class='gold' alt='Gold' title='This user has: <?php echo $user['gold']; ?> gold'/> <?php echo $user['gold']; ?>) <?php if($_SESSION['access'] == ADMIN){ ?><a href='admin.php?p=player&uid=<?php echo $id; ?>&g'>Give gold <?php } ?></a>
|
||||
This user has no gold! (<img src='img/admin/gold_g.gif' class='gold' alt='Gold' title='This user has: <?php echo $user['gold']; ?> gold'/> <?php echo $user['gold']; ?>) <?php if($_SESSION['access'] == ADMIN){ ?><a href='admin.php?p=player&uid=<?php echo $id; ?>&g'>Give gold <?php } ?></a>
|
||||
<?php }
|
||||
else if($user['gold'] > 0){ ?>
|
||||
<img src='../img/admin/gold.gif' class='gold' alt='Gold' title='This user has: <?php echo $user['gold']; ?> gold'/> <?php echo $user['gold']; ?> <?php if($_SESSION['access'] == ADMIN){ ?><a href='admin.php?p=player&uid=<?php echo $id; ?>&g'><img src='../img/admin/edit.gif' title='Give Gold'><?php } ?></a></td>
|
||||
<img src='img/admin/gold.gif' class='gold' alt='Gold' title='This user has: <?php echo $user['gold']; ?> gold'/> <?php echo $user['gold']; ?> <?php if($_SESSION['access'] == ADMIN){ ?><a href='admin.php?p=player&uid=<?php echo $id; ?>&g'><img src='img/admin/edit.gif' title='Give Gold'><?php } ?></a></td>
|
||||
<?php }
|
||||
?>
|
||||
</tr>
|
||||
@@ -294,12 +180,12 @@ if($deletion){
|
||||
echo '';
|
||||
} else {
|
||||
if(isset($_GET['g'])){ ?>
|
||||
<form action="../GameEngine/Admin/Mods/gold_1.php" method="POST">
|
||||
<form action="GameEngine/Admin/Mods/gold_1.php" method="POST">
|
||||
<input type="hidden" name="id" value="<?php echo $id; ?>">
|
||||
<input type="hidden" name="admid" id="admid" value="<?php echo $_SESSION['id']; ?>">
|
||||
<tr>
|
||||
<td>Insert number and press 'enter'</td>
|
||||
<td><input class="give_gold" name="gold" value="0"> <a href="admin.php?p=player&uid=<?php echo $id; ?>"><img src="../img/admin/del.gif" title="Cancel"></a></td>
|
||||
<td><input class="give_gold" name="gold" value="0"> <a href="admin.php?p=player&uid=<?php echo $id; ?>"><img src="img/admin/del.gif" title="Cancel"></a></td>
|
||||
</tr></form>
|
||||
<?php } } }?>
|
||||
<tr><td></td><td></td></tr>
|
||||
@@ -334,19 +220,19 @@ if($deletion){
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Cultural Points</td>
|
||||
<td><?php echo $user['cp'];?> <?php if($_SESSION['access'] == ADMIN){ ?><a href='admin.php?p=player&uid=<?php echo $id; ?>&cp'><img src='../img/admin/edit.gif' title='Give Gold'><?php } ?>
|
||||
<td><?php echo $user['cp'];?> <?php if($_SESSION['access'] == ADMIN){ ?><a href='admin.php?p=player&uid=<?php echo $id; ?>&cp'><img src='img/admin/edit.gif' title='Give Gold'><?php } ?>
|
||||
</tr>
|
||||
<?php if($_SESSION['access'] == ADMIN){
|
||||
if($_GET['cp'] == 'ok'){
|
||||
echo '';
|
||||
} else {
|
||||
if(isset($_GET['cp'])){ ?>
|
||||
<form action="../GameEngine/Admin/Mods/cp.php" method="POST">
|
||||
<form action="GameEngine/Admin/Mods/cp.php" method="POST">
|
||||
<input type="hidden" name="admid" id="admid" value="<?php echo $_SESSION['id']; ?>">
|
||||
<input type="hidden" name="id" value="<?php echo $id; ?>">
|
||||
<tr>
|
||||
<td>Insert number and press 'enter'</td>
|
||||
<td><input class="give_gold" name="cp" value="0"> <a href="admin.php?p=player&uid=<?php echo $id; ?>"><img src="../img/admin/del.gif" title="Cancel"></a></td>
|
||||
<td><input class="give_gold" name="cp" value="0"> <a href="admin.php?p=player&uid=<?php echo $id; ?>"><img src="img/admin/del.gif" title="Cancel"></a></td>
|
||||
</tr></form>
|
||||
<?php } } }?>
|
||||
<tr>
|
||||
@@ -356,22 +242,12 @@ if($deletion){
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<center><?php include ('punish.tpl'); ?></center>
|
||||
|
||||
<?php
|
||||
include ('villages.tpl');
|
||||
|
||||
include ('add_village.tpl');
|
||||
|
||||
|
||||
}else{
|
||||
|
||||
echo "Not found...<a href=\"javascript: history.go(-1)\">Back</a>";
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user