mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-27 16:14:30 +00:00
58 lines
2.9 KiB
Smarty
58 lines
2.9 KiB
Smarty
<?php
|
|
// 42.tpl - GREATWORKSHOP
|
|
global $village, $building, $technology, $generator, $session, $id;
|
|
|
|
include("next.tpl");
|
|
|
|
$level = (int)$village->resarray['f'.$id];
|
|
?>
|
|
<div id="build" class="gid42">
|
|
<a href="#" onClick="return Popup(42,4);" class="build_logo">
|
|
<img class="building g42" src="img/x.gif" alt="<?php echo GREATWORKSHOP; ?>" title="<?php echo GREATWORKSHOP;?>" />
|
|
</a>
|
|
<h1><?php echo GREATWORKSHOP;?> <span class="level"><?php echo LEVEL;?> <?php echo $level;?></span></h1>
|
|
<p class="build_desc"><?php echo GREATWORKSHOP_DESC;?></p>
|
|
|
|
<?php if ($building->getTypeLevel(42) > 0):?>
|
|
<form method="POST" name="snd" action="build.php">
|
|
<input type="hidden" name="id" value="<?php echo (int)$id;?>" />
|
|
<input type="hidden" name="ft" value="t3" />
|
|
<table cellpadding="1" cellspacing="1" class="build_details">
|
|
<thead><tr><td><?php echo NAME;?></td><td><?php echo QUANTITY;?></td><td><?php echo MAX;?></td></tr></thead>
|
|
<tbody>
|
|
<?php include("42_train.tpl");?>
|
|
</tbody>
|
|
</table>
|
|
<p><input type="image" id="btn_train" class="dynamic_img" value="ok" name="s1" src="img/x.gif" alt="<?php echo TRAIN; ?>" /></p>
|
|
</form>
|
|
<?php else:?>
|
|
<b><?php echo TRAINING_COMMENCE_GREATWORKSHOP;?></b><br />
|
|
<?php endif;?>
|
|
|
|
<?php
|
|
$trainlist = $technology->getTrainingList(7);
|
|
if (!empty($trainlist)): $TrainCount = 0; $NextFinished = '';
|
|
?>
|
|
<table cellpadding="1" cellspacing="1" class="under_progress">
|
|
<thead><tr><td><?php echo TRAINING;?></td><td><?php echo DURATION;?></td><td><?php echo FINISHED;?></td></tr></thead>
|
|
<tbody>
|
|
<?php foreach ($trainlist as $train): $TrainCount++;?>
|
|
<tr>
|
|
<td class="desc"><img class="unit u<?php echo $train['unit'];?>" src="img/x.gif" alt="<?php echo $train['name'];?>" title="<?php echo $train['name'];?>" /><?php echo $train['amt'];?> <?php echo $train['name'];?></td>
|
|
<td class="dur">
|
|
<?php if ($TrainCount == 1): $NextFinished = $generator->getTimeFormat($train['timestamp2'] - time());?>
|
|
<span id="timer<?php echo ++$session->timer;?>"><?php echo $generator->getTimeFormat($train['timestamp'] - time());?></span>
|
|
<?php else:?>
|
|
<?php echo $generator->getTimeFormat($train['eachtime'] * $train['amt']);?>
|
|
<?php endif;?>
|
|
</td>
|
|
<td class="fin"><?php $time = $generator->procMTime($train['timestamp']); if($time[0]!="today") echo "on ".$time[0]." at "; echo $time[1];?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
<tr class="next"><td colspan="3"><?php echo UNIT_FINISHED;?> <span id="timer<?php echo ++$session->timer;?>"><?php echo $NextFinished;?></span></td></tr>
|
|
</tbody>
|
|
</table>
|
|
<?php endif;?>
|
|
|
|
<?php include("upgrade.tpl");?>
|
|
</div> |