mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
270 lines
8.8 KiB
Smarty
270 lines
8.8 KiB
Smarty
<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 $ranking->procRankArray();echo $ranking->getUserRank($user['id']); ?></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";
|
|
}
|
|
else if($user['tribe'] == 5)
|
|
{
|
|
echo "Nature";
|
|
}
|
|
?>
|
|
</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'];?>"><?php echo $refreshicon; ?></a></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Age</td>
|
|
<td>
|
|
<?php
|
|
if(isset($user['birthday']) && $user['birthday'] != 0)
|
|
{
|
|
$age = date("Y")-substr($user['birthday'],0,4);
|
|
echo $age;
|
|
}
|
|
else
|
|
{
|
|
echo "<font color=\"red\">Not Available</font>";
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Gender</td>
|
|
<td>
|
|
<?php
|
|
if(isset($user['gender']) && $user['gender'] != 0)
|
|
{
|
|
$gender = ($user['gender']== 1)? "Male" : "Female";
|
|
echo $gender;
|
|
}
|
|
else
|
|
{
|
|
echo "<font color=\"red\">Not Available</font>";
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Username</th>
|
|
<td>
|
|
<form action="../GameEngine/Admin/Mods/editUsername.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']; ?>">
|
|
<input type="text" style="width: 80%;" class="fm" name="username" value="<?php echo $user['username']; ?>"> <input type="image" value="submit" src="../img/admin/edit.gif" title="Edit Username"></a>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Location</th>
|
|
<td>
|
|
<input type="text" style="width: 80%;" disabled="disabled" class="fm" name="location" value="<?php echo $user['location']; ?>"> <a href="admin.php?p=editUser&uid=<?php echo $id; ?>"><img src="../img/admin/edit.gif" title="Edit Location"></a>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Password</th>
|
|
<td>
|
|
Change <a href="admin.php?p=editPassword&uid=<?php echo $id; ?>"><img src="../img/admin/edit.gif" title="Change Password"></a>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<?php include("playerplusbonus.tpl"); ?>
|
|
<tr>
|
|
<th>Email</th>
|
|
<td>
|
|
<input disabled="disabled" style="width: 80%;" class="fm" name="email" value="<?php echo $user['email']; ?>"> <a href="admin.php?p=editUser&uid=<?php echo $id; ?>"><img src="../img/admin/edit.gif" title="Edit Email"></a>
|
|
</td>
|
|
</tr>
|
|
<?php /*
|
|
<tr>
|
|
<th>Send</th>
|
|
<td>
|
|
<?php
|
|
$link = "<a href=\"mailto:".$user['email']."\">".$user['email']."</a>";
|
|
echo $link;
|
|
?>
|
|
</td>
|
|
</tr> */ ?>
|
|
<tr>
|
|
<th>Quest</td>
|
|
<td>
|
|
<?php
|
|
## not sure if this is correct
|
|
$quest = $user['quest'];
|
|
if($quest == 1) { $questname = "Woodcutter"; }
|
|
elseif($quest ==2) {$questname = "Crop"; }
|
|
elseif($quest ==3) {$questname = "Your Villages Name"; }
|
|
elseif($quest ==4) {$questname = "Other Players"; }
|
|
elseif($quest ==5) {$questname = "Two Building Order"; }
|
|
elseif($quest ==6) {$questname = "Messages"; }
|
|
elseif($quest ==7) {$questname = "Huge Army!"; }
|
|
elseif($quest ==8) {$questname = "Everything to 1!"; }
|
|
elseif($quest ==9) {$questname = "Dove of Peace"; }
|
|
elseif($quest ==10) {$questname = "Cranny"; }
|
|
elseif($quest ==11) {$questname = "To Two!"; }
|
|
elseif($quest ==12) {$questname = "Instruction"; }
|
|
elseif($quest ==13) {$questname = "Main Building"; }
|
|
elseif($quest ==14) {$questname = "Advanced!" ;}
|
|
elseif($quest ==15) {$questname = "Weapons or Dough"; }
|
|
elseif($quest ==16) {$questname = "Military: Rally Point"; }
|
|
elseif($quest ==17) {$questname = "Military: Barracks"; }
|
|
elseif($quest ==18) {$questname = "Military: Train 2 Troops"; }
|
|
elseif($quest ==19) {$questname = "Economy: Granary"; }
|
|
elseif($quest ==20) {$questname = "Economy: Warehouse"; }
|
|
elseif($quest ==21) {$questname = "Economy: Marketplace"; }
|
|
elseif($quest ==22) {$questname = "Everything to 2!"; }
|
|
elseif($quest ==28) {$questname = "Alliance : Join to one"; }
|
|
elseif($quest ==29) {$questname = "Main Building to 5"; }
|
|
elseif($quest ==30) {$questname = "Granary to Level 3"; }
|
|
elseif($quest ==31) {$questname = "Warehouse to Level 7"; }
|
|
elseif($quest ==32) {$questname = "Everything to 5!"; }
|
|
elseif($quest ==33) {$questname = "Palace or Residence"; }
|
|
elseif($quest ==34) {$questname = "3 settlers"; }
|
|
elseif($quest ==35) {$questname = "New Village"; }
|
|
elseif($quest ==36) {$questname = "Build a Wall/Palisade"; }
|
|
elseif($quest >=37) {$questname = "Finish"; }
|
|
else { $questname = "Unknown"; }
|
|
$quesst = $quest;
|
|
$questinfo = "$quesst - $questname";
|
|
?>
|
|
<input disabled="disabled" style="width: 80%;" class="fm" name="quest" value="<?php echo $questinfo; ?>"> <a href="admin.php?p=editUser&uid=<?php echo $id; ?>"><img src="../img/admin/edit.gif" title="Edit Quest"></a></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" class="empty"></td>
|
|
</tr>
|
|
|
|
<?php
|
|
if($_SESSION['access'] == ADMIN)
|
|
{
|
|
echo '
|
|
<tr>
|
|
<td colspan="2">
|
|
<a href="?p=editUser&uid='.$user['id'].'"><font color="blue">»</font> Edit User</a>
|
|
</td>
|
|
</tr>';
|
|
}
|
|
else if($_SESSION['access'] == MULTIHUNTER)
|
|
{
|
|
echo '';
|
|
}
|
|
if($_SESSION['access'] == ADMIN)
|
|
{
|
|
echo '
|
|
<tr>
|
|
<td colspan="2">
|
|
<a class="rn3" href="?p=deletion&uid='.$user['id'].'"><font color="red">»</font> Delete User</a>
|
|
</td>
|
|
</tr>';
|
|
}
|
|
else if($_SESSION['access'] == MULTIHUNTER)
|
|
{
|
|
echo '';
|
|
}
|
|
?>
|
|
|
|
<tr>
|
|
<td colspan="2"><a href="?p=ban&uid=<?php echo $user['id']; ?>">» Ban User</a></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><a href="?p=Newmessage&uid=<?php echo $user['id']; ?>">» Send Message</a></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><a href="?p=editPlus&uid=<?php echo $user['id']; ?>">» Edit Plus & Res Bonus</a></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><a href="?p=editSitter&uid=<?php echo $user['id']; ?>">» Edit Sitters</a></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><a href="?p=editOverall&uid=<?php echo $user['id']; ?>">» Edit Overall Off & Def</a></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><a href="?p=editWeek&uid=<?php echo $user['id']; ?>">» Edit Weekly Off, Def, Raid</a></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><a href="?p=userlogin&uid=<?php echo $user['id']; ?>">» User Login Log</a></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><a href="?p=userillegallog&uid=<?php echo $user['id']; ?>">» User Illegal Log</a></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2" class="desc2">
|
|
<div class="desc2div">
|
|
<center><?php echo nl2br($profiel[0]); ?></center>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<td class="desc1"><div class="desc1div">
|
|
<center><?php echo nl2br($profiel[1]); ?></center>
|
|
</div></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form> |