Files
TravianZ/Templates/Ranking/alliance_defend.tpl
T

125 lines
4.3 KiB
Smarty

<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Project: TravianZ ##
## Version: 01.09.2013 ##
## Filename alliance_defend.tpl ##
## Refactored by Shadow ##
## License: TravianZ Project ##
## Copyright: TravianZ (c) 2010-2013. All rights reserved. ##
## URLs: http://travian.shadowss.ro ##
## Source code: http://github.com/Shadowss/TravianZ/ ##
## ##
#################################################################################
// Inițializare sigură
$search = 0;
// Validare search din sesiune
if (!isset($_SESSION['search']) || !is_numeric($_SESSION['search'])) {
?>
<center>
<font color="orange" size="2">
<p class="error">
<?php echo TZ_THE_ALLIANCE; ?> <b>"<?php echo htmlspecialchars(isset($_SESSION['search']) ? $_SESSION['search'] : '', ENT_QUOTES, 'UTF-8'); ?>"</b> <?php echo TZ_DOES_NOT_EXIST; ?>
</p>
</font>
</center>
<?php
} else {
$search = (int)$_SESSION['search'];
}
?>
<table cellpadding="1" cellspacing="1" id="alliance_def" class="row_table_data">
<thead>
<tr>
<th colspan="5">
<?php echo TZ_THE_BEST_ALLIANCES_DEF; ?>
<div id="submenu">
<a title="<?php echo TZ_TOP_10; ?>" href="statistiken.php?id=43">
<img class="btn_top10" src="img/x.gif" alt="<?php echo TZ_TOP_10; ?>" />
</a>
<a title="<?php echo DEFENDER; ?>" href="statistiken.php?id=42">
<img class="active btn_def" src="img/x.gif" alt="<?php echo DEFENDER; ?>" />
</a>
<a title="<?php echo ATTACKER; ?>" href="statistiken.php?id=41">
<img class="btn_off" src="img/x.gif" alt="<?php echo ATTACKER; ?>" />
</a>
</div>
</th>
</tr>
<tr>
<td></td>
<td><?php echo ALLIANCE; ?></td>
<td><?php echo PLAYER; ?></td>
<td><?php echo POINTS; ?></td>
</tr>
</thead>
<tbody>
<?php
// Luăm ranking (fallback safe)
$rankArray = isset($ranking) ? $ranking->getRank() : array();
// Start implicit
$start = isset($_SESSION['start']) ? ((int)$_SESSION['start'] + 1) : 1;
// Validare rank GET
if (isset($_GET['rank']) && is_numeric($_GET['rank'])) {
$rank = (int)$_GET['rank'];
$multiplier = 1;
$totalRanks = count($rankArray);
if ($rank > $totalRanks) {
$rank = $totalRanks - 1;
}
while ($rank > (20 * $multiplier)) {
$multiplier++;
}
$start = 20 * $multiplier - 19;
}
// Afișare tabel
if (!empty($rankArray) && count($rankArray) > 1) {
for ($i = $start; $i < $start + 20; $i++) {
if (isset($rankArray[$i]) && $rankArray[$i] !== "pad" && isset($rankArray[$i]['name'])) {
// Highlight search
$rowClass = ($i === $search) ? 'hl' : '';
echo '<tr class="' . $rowClass . '">';
echo '<td class="ra fc">' . $i . '.</td>';
// Alliance
echo '<td class="al">';
echo '<a href="allianz.php?aid=' . (int)$rankArray[$i]['id'] . '">';
echo htmlspecialchars($rankArray[$i]['tag'], ENT_QUOTES, 'UTF-8');
echo '</a></td>';
// Players
echo '<td class="pla">' . (int)$rankArray[$i]['players'] . '</td>';
// Defensive points (Adp)
echo '<td class="po">' . (int)$rankArray[$i]['Adp'] . '</td>';
echo '</tr>';
}
}
} else {
echo '<tr><td class="none" colspan="5">No alliances found</td></tr>';
}
?>
</tbody>
</table>
<?php
// Include fallback safe
include("ranksearch.tpl");
?>