Files
TravianZ/Admin/Templates/player.tpl
T
Neranjen 786cbf1f8e Big Cleanup
1) Removed unnecessary files
2) Trailling spaces (no all though)
3)  Some space to tab conversion
2012-06-18 05:06:05 +05:30

98 lines
3.0 KiB
Smarty

<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Filename player.tpl ##
## Developed by: Dzoki ##
## Reworked: aggenkeech ##
## License: TravianX Project ##
## Copyright: TravianX (c) 2010-2012. All rights reserved. ##
## ##
#################################################################################
$id = $_GET['uid'];
if(isset($id))
{
include("../GameEngine/Ranking.php");
$varmedal = $database->getProfileMedal($id);
$user = $database->getUserArray($id,1);
$varray = $database->getProfileVillages($id);
$refreshicon = "<img src=\"data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAAkAAAAKCAIAAADpZ+PpAAAAAXNSR0IArs4c6QAAAARnQU1BAACx
jwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEQSURBVChTY/gPBkevHfRrtjMsU9bJ05+5eylE
kAGI117fKFsqYzhTNeSQY8xhP8vJJmVrK3eeP8Bw58kt03rTkHnRxdvrnKd4m83SCTtsaLZI1K7H
mGH2xpnHLh+GGPL7/7/S1dVKU2Usd6roTZBh+Pj3M0QCCL78+Fw6v1ooR1myWU2zzpjBb2Ko8xwf
91l+gRNDLzw6f+nepcsPrl14cPXW8wcMWqVaEYdtPdZYubUHww0AMs5cusygU68UtVUr87CPWbdd
9Ly83TcO7Lq2I7ozoXfZTAalCjWZemnlaYo2u0wVFkoJdwoyZDOZNDi//vqRwbkjac+dC827p2h3
Gyh3S6m0a0Qszrnz6RnQWAAxV5tT/VAiNQAAAABJRU5ErkJggg==\">";
if($user)
{
$totalpop = 0;
foreach($varray as $vil)
{
$totalpop += $vil['pop'];
}
include('search2.tpl');
echo "<br />";
$deletion = false;
if($deletion)
{
include("playerdeletion.tpl");
}
include("playerinfo.tpl");
include("playeradditionalinfo.tpl");
echo "<br />";
include("playermedals.tpl");
include ("villages.tpl"); ?>
<div style="float: left;">
<?php
include ('punish.tpl');
?>
</div>
<div style="float: right;">
<?php
include ('add_village.tpl');
?>
</div>
<?php
$sql = "SELECT * FROM ".TB_PREFIX."banlist WHERE uid = ".$id."";
$numbans = mysql_num_rows(mysql_query($sql));
?>
<table id="member" cellpadding="1" cellspacing="1">
<thead>
<tr>
<th colspan="6">Ban History (<?php echo $numbans; ?>)</th>
</tr>
<tr>
<td class="hab"><b>Start</b></td>
<td class="hab"><b>End</b></td>
<td class="hab"><b>Duration</b></td>
<td class="on"><b>Reason</b></td>
</tr>
</thead>
<tbody>
<?php
$result = mysql_query($sql);
while($row = mysql_fetch_assoc($result))
{
echo '
<tr>
<td class="hab">'.date('d:m:Y H:i', $row['time']).'</td>
<td class="hab">'.date('d:m:Y H:i', $row['end']).'</td>
<td class="hab">'.round((($row['end'] - $row['time']) / 3600), 2).' minutes</td>
<td class="on">'.$row['reason'].'</td>
</tr>';
}
?>
</tbody>
</table>
<?php
}
else
{
include("404.tpl");
}
}
?>