mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
ee0b4984c2
+Fixed a bug that could have happened in the statistics if there were 0 users in the server +Fixed a compatibility bug with PHP 7.0
65 lines
3.2 KiB
Smarty
65 lines
3.2 KiB
Smarty
<?php
|
|
if(!is_numeric($_SESSION['search'])) {
|
|
?>
|
|
<center><font color=orange size=2><p class=\"error\">The user <b>"<?php echo $_SESSION['search']; ?>"</b> does not exist.</p></font></center>
|
|
<?php
|
|
$search = 0;
|
|
}
|
|
else {
|
|
$search = $_SESSION['search'];
|
|
}
|
|
?>
|
|
<table cellpadding="1" cellspacing="1" id="player">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="5">
|
|
The largest players <div id="submenu"><a title="Top 10" href="statistiken.php?id=7"><img class="btn_top10" src="img/x.gif" alt="Top 10" /></a><a title="defender" href="statistiken.php?id=32"><img class="btn_def" src="img/x.gif" alt="defender" /></a><a title="attacker" href="statistiken.php?id=31"><img class="btn_off" src="img/x.gif" alt="attacker" /></a></div><br><div id="submenu2"><a title="Romans" href="statistiken.php?id=11"><img class="btn_v1" src="img/x.gif" alt="attacker"></a><a title="Teutons" href="statistiken.php?id=12"><img class="btn_v2" src="img/x.gif" alt="attacker"></a><a title="Gauls" href="statistiken.php?id=13"><img class="btn_v3" src="img/x.gif" alt="attacker"></a></div>
|
|
</th>
|
|
</tr>
|
|
<tr><td></td><td>Player</td><td>Alliance</td><td>Population</td><td>Villages</td></tr>
|
|
</thead><tbody>
|
|
<?php
|
|
$rankArray = $ranking->getRank();
|
|
if(isset($_GET['rank'])){
|
|
$multiplier = 1;
|
|
if(is_numeric($_GET['rank'])) {
|
|
if($_GET['rank'] > count($rankArray)) {
|
|
$_GET['rank'] = count($rankArray) - 1;
|
|
}
|
|
while($_GET['rank'] > (20 * $multiplier)) $multiplier++;
|
|
|
|
$start = 20 * $multiplier - 19;
|
|
}
|
|
else $start = ($_SESSION['start'] + 1);
|
|
}
|
|
else $start = ($_SESSION['start'] + 1);
|
|
|
|
if(count($rankArray) > 1) {
|
|
for($i = $start; $i < $start + 20; $i++) {
|
|
if(isset($rankArray[$i]['username']) && $rankArray[$i] != "pad") {
|
|
if($i == $search) echo "<tr class=\"hl\"><td class=\"ra fc\" >";
|
|
else echo "<tr><td class=\"ra \" >";
|
|
|
|
echo $i.".</td><td class=\"pla \" >";
|
|
if(isset($rankArray[$i]['access']) && $rankArray[$i]['access'] > 2){
|
|
echo"<u><a href=\"spieler.php?uid=".$rankArray[$i]['userid']."\">".$rankArray[$i]['username']."</a></u>";
|
|
} else {
|
|
echo"<a href=\"spieler.php?uid=".$rankArray[$i]['userid']."\">".$rankArray[$i]['username']."</a>";
|
|
}
|
|
echo"</td><td class=\"al\" >";
|
|
if($rankArray[$i]['aname'] != "") {
|
|
echo "<a href=\"allianz.php?aid=".$rankArray[$i]['alliance']."\">".$rankArray[$i]['aname']."</a>";
|
|
}
|
|
else echo "-";
|
|
echo "</td><td class=\"pop\" >".$rankArray[$i]['totalpop']."</td><td class=\"vil\">".$rankArray[$i]['totalvillage']."</td></tr>";
|
|
}
|
|
}
|
|
}
|
|
else echo "<td class=\"none\" colspan=\"5\">No users found</td>";
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<?php
|
|
include("ranksearch.tpl");
|
|
?>
|