Files
TravianZ/Templates/Build/25_create.tpl
T
novgorodschi catalin 55e6dd60b5 Refactor + BugFix
1. Fix a bug in Admin Panel that you can edit by yourself your rank, now you cannot edit your rank anymore.

2. Now Alliance Leader can edit his own Position

3. Fix negative value on Demolition Building, now in database at lvl is appear new level not -1

4. Refactor Ajax map, now all is alligned (Ajax folder and Map folder)

5. Fix bug from Palace (when change capital now Automation recount population automaticaly on old capital and new capital)
2026-05-18 09:18:35 +03:00

55 lines
3.3 KiB
Smarty

<?php
// 25_create.tpl - RESIDENCE TRAIN UNITS
global $id, $technology, $village, $generator;
$i = 20; // Settler (sau 19 pentru Chief la Palace)
$unit = ${'u'.$i};
$available = (int)$village->unitarray['u'.$i];
$maxTrain = $technology->maxUnit($i);
$trainlist = $technology->getTrainingList(20);
?>
<form method="POST" name="snd" action="build.php">
<input type="hidden" name="id" value="<?php echo (int)$id;?>" />
<input type="hidden" name="ft" value="t1" />
<table cellpadding="1" cellspacing="1" class="build_details">
<thead><tr><td>Naam</td><td>Aantal</td><td>max</td></tr></thead>
<tbody>
<tr>
<td class="desc">
<div class="tit">
<img class="unit u<?php echo $i;?>" src="img/x.gif" alt="<?php echo $technology->getUnitName($i);?>" />
<a href="#" onClick="return Popup(<?php echo $i;?>,1);"><?php echo $technology->getUnitName($i);?></a>
<span class="info">(Available: <?php echo $available;?>)</span>
</div>
<div class="details">
<img class="r1" src="img/x.gif" title="Lumber"/><?php echo (int)$unit['wood'];?>|
<img class="r2" src="img/x.gif" title="Clay"/><?php echo (int)$unit['clay'];?>|
<img class="r3" src="img/x.gif" title="Iron"/><?php echo (int)$unit['iron'];?>|
<img class="r4" src="img/x.gif" title="Crop"/><?php echo (int)$unit['crop'];?>|
<img class="clock" src="img/x.gif" title="duration"/><?php echo $generator->getTimeFormat(round($unit['time']/SPEED));?>
</div>
</td>
<td class="val"><input type="text" class="text" name="t<?php echo $i;?>" value="0" maxlength="4"></td>
<td class="max"><a href="#" onClick="document.snd.t<?php echo $i;?>.value=<?php echo $maxTrain;?>; return false;">(<?php echo $maxTrain;?>)</a></td>
</tr>
</tbody>
</table>
<p><input type="image" id="btn_train" class="dynamic_img" value="ok" name="s1" src="img/x.gif" alt="train" /></p>
<?php if (count($trainlist) > 0): $timer = 2*count($trainlist);?>
<table cellpadding="1" cellspacing="1" class="under_progress">
<thead><tr><td>Training</td><td>Duration</td><td>Finished</td></tr></thead>
<tbody>
<?php foreach ($trainlist as $train):?>
<tr>
<td class="desc"><img class="unit u<?php echo $train['unit'];?>" src="img/x.gif" alt="<?php echo $train['name'];?>"/><?php echo $train['amt'];?> <?php echo $train['name'];?></td>
<td class="dur"><span id="timer<?php echo $timer;?>"><?php echo $generator->getTimeFormat(($train['commence']+($train['eachtime']*$train['amt']))-time());?></span></td>
<td class="fin"><?php $time = $generator->procMTime($train['commence']+$train['amt']); if($time[0]!="today") echo "on ".$time[0]." at "; echo $time[1];?> o'clock</td>
</tr>
<tr class="next"><td colspan="3">The next unit will be finished in <span id="timer<?php echo --$timer;?>"><?php echo $generator->getTimeFormat(($train['commence']+$train['eachtime'])-time());?></span></td></tr>
<?php $timer--; endforeach;?>
</tbody>
</table>
<?php endif;?>
</form>