mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-22 20:46:10 +00:00
3d4d5e5cef
Fix Command Center Capital Change #329 , Fix forum units, fix trooplist on raidlist,
51 lines
1.3 KiB
Smarty
51 lines
1.3 KiB
Smarty
<?php
|
|
|
|
$start = ($session->tribe - 1) * 10 + 1;
|
|
$end = $session->tribe * 10;
|
|
|
|
/* build unit list once (keeps alignment safe) */
|
|
global $unitsbytype;
|
|
$units = [];
|
|
|
|
for ($i = $start; $i <= $end; $i++) {
|
|
|
|
// scoutii nu pot fi folositi in farmlist (generic pentru toate triburile)
|
|
if (in_array($i, $unitsbytype['scout'])) {
|
|
continue;
|
|
}
|
|
|
|
$units[] = $i;
|
|
}
|
|
|
|
?>
|
|
|
|
<table class="transparent" id="raidList" cellspacing="1" cellpadding="1">
|
|
|
|
<tr>
|
|
<?php foreach ($units as $i): ?>
|
|
<td>
|
|
<label for="t<?php echo $i - $start + 1; ?>">
|
|
<img class="unit u<?php echo $i; ?>"
|
|
title="<?php echo $technology->getUnitName($i); ?>"
|
|
src="img/x.gif">
|
|
</label>
|
|
</td>
|
|
<?php endforeach; ?>
|
|
</tr>
|
|
|
|
<tr>
|
|
<?php foreach ($units as $i): ?>
|
|
<?php $index = $i - $start + 1; ?>
|
|
|
|
<td>
|
|
<input class="text"
|
|
id="t<?php echo $index; ?>"
|
|
type="text"
|
|
name="t<?php echo $index; ?>"
|
|
value="<?php echo (isset(${'t'.$index}) && ${'t'.$index} > 0) ? ${'t'.$index} : 0; ?>">
|
|
</td>
|
|
|
|
<?php endforeach; ?>
|
|
</tr>
|
|
|
|
</table> |