mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-09-18 08:07:18 +00:00
The first release of the refactored version
It's still a work in progress, there are a lot of things that will change in the final release
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
<?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 Teutons <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="active 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($database->getUserByTribe(2)) > 0) {
|
||||
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]['alliance'] > 0) {
|
||||
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");
|
||||
?>
|
||||
Reference in New Issue
Block a user