Files
TravianZ/Templates/Build/2.tpl
T
novgorodschi catalin fe6ff01396 Fix Some PHP 8+ view error in Build & Credits
Fix Some PHP 8+ view error in Build & Credits

TO DO :  Full audit in build directory
2026-06-25 10:54:58 +03:00

65 lines
2.8 KiB
Smarty

<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Filename : CLAYPIT ##
## Type : BUILDING TEMPLATE ##
## --------------------------------------------------------------------------- ##
## Refactored by : Shadow ##
## Redesign by : Shadow ##
## --------------------------------------------------------------------------- ##
## Contact : cata7007@gmail.com ##
## Project : TravianZ ##
## Test Server : https://travianz.org ##
## GitHub : https://github.com/Shadowss/TravianZ ##
## --------------------------------------------------------------------------- ##
## License : TravianZ Project ##
## Copyright : TravianZ (c) 2010-2026. All rights reserved. ##
## --------------------------------------------------------------------------- ##
#################################################################################
include 'next.tpl';
// — PREPARING DATA —
$field = 'f' . $id;
$currentLevel = (int) ($village->resarray[$field] ?? 0);
$buildingType = $village->resarray[$field . 't'] ?? 0;
$currentProd = $bid2[$currentLevel]['prod'] * SPEED;
$isMax = $building->isMax($buildingType, $id);
$maxLevel = ($village->capital == 1) ? 20 : 10;
$nextLevelRaw = $currentLevel + 1 + $loopsame + $doublebuild + $master;
$nextLevel = min($nextLevelRaw, $maxLevel);
$nextProd = $bid2[$nextLevel]['prod'] * SPEED;
?>
<div id="build" class="gid2">
<a href="#" onclick="return Popup(2,4);" class="build_logo">
<img class="building g2" src="img/x.gif" alt="<?= CLAYPIT ?>" title="<?= CLAYPIT ?>">
</a>
<h1>
<?= CLAYPIT ?>
<span class="level"><?= LEVEL ?> <?= $currentLevel ?></span>
</h1>
<p class="build_desc"><?= CLAYPIT_DESC ?></p>
<table cellpadding="1" cellspacing="1" id="build_value">
<tr>
<th><?= CUR_PROD ?>:</th>
<td><b><?= $currentProd ?></b> <?= PER_HR ?></td>
</tr>
<?php if (!$isMax): ?>
<tr>
<th><?= NEXT_PROD ?> <?= $nextLevel ?>:</th>
<td><b><?= $nextProd ?></b> <?= PER_HR ?></td>
</tr>
<?php endif; ?>
</table>
<?php include 'upgrade.tpl'; ?>
</div>