mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* convert dbtype 'item' * StatsContainer::toJson - exclude empty values in listviews + xml
109 lines
3.2 KiB
PHP
109 lines
3.2 KiB
PHP
<?php
|
|
namespace Aowow\Template;
|
|
|
|
use \Aowow\Lang;
|
|
|
|
$this->brick('header');
|
|
?>
|
|
<div class="main" id="main">
|
|
<div class="main-precontents" id="main-precontents"></div>
|
|
<div class="main-contents" id="main-contents">
|
|
|
|
<?php
|
|
$this->brick('announcement');
|
|
|
|
$this->brick('pageTemplate');
|
|
|
|
$this->brick('infobox');
|
|
?>
|
|
|
|
<div class="text">
|
|
<?php $this->brick('redButtons'); ?>
|
|
|
|
<h1><?=$this->h1; ?></h1>
|
|
<?php
|
|
if ($this->unavailable):
|
|
?>
|
|
<div class="pad"></div>
|
|
<b style="color: red"><?=Lang::item('_unavailable'); ?></b>
|
|
<div class="pad"></div>
|
|
<?php
|
|
endif;
|
|
|
|
$this->brick('tooltip');
|
|
|
|
$this->brick('markup', ['markup' => $this->article]);
|
|
|
|
if (isset($this->map)):
|
|
echo " <h3>".Lang::item('vendorIn')."</h3>\n";
|
|
$this->brick('mapper');
|
|
endif;
|
|
|
|
if ($this->transfer):
|
|
echo " <div class=\"pad\"></div>\n ".$this->transfer."\n";
|
|
endif;
|
|
|
|
if ($this->subItems):
|
|
?>
|
|
<div class="clear"></div>
|
|
<h3><?=Lang::item('_rndEnchants'); ?></h3>
|
|
|
|
<div class="random-enchantments" style="margin-right: 25px">
|
|
<ul>
|
|
<?php
|
|
foreach ($this->subItems['data'] as $k => $i):
|
|
if ($k < (count($this->subItems['data']) / 2)):
|
|
$eText = [];
|
|
foreach ($i['enchantment'] as $eId => $txt):
|
|
$eText[] = '<a style="text-decoration:none; color:#CCCCCC;" href="?enchantment='.$eId.'">'.$txt.'</a>';
|
|
endforeach;
|
|
|
|
echo ' <li><div><span title="ID'.Lang::main('colon').$this->subItems['randIds'][$k].'" class="tip q'.$this->subItems['quality'].'">...'.$i['name'].'</span>';
|
|
echo ' <small class="q0">'.Lang::item('_chance', [$i['chance']]).'</small><br />'.implode(', ', $eText).'</div></li>';
|
|
endif;
|
|
endforeach;
|
|
?>
|
|
</ul>
|
|
</div>
|
|
<?php
|
|
if (count($this->subItems) > 1):
|
|
?>
|
|
<div class="random-enchantments" style="margin-right: 25px">
|
|
<ul>
|
|
<?php
|
|
foreach ($this->subItems['data'] as $k => $i):
|
|
if ($k >= (count($this->subItems['data']) / 2)):
|
|
$eText = [];
|
|
foreach ($i['enchantment'] as $eId => $txt):
|
|
$eText[] = '<a style="text-decoration:none; color:#CCCCCC;" href="?enchantment='.$eId.'">'.$txt.'</a>';
|
|
endforeach;
|
|
|
|
echo ' <li><div><span title="ID'.Lang::main('colon').$this->subItems['randIds'][$k].'" class="tip q'.$this->subItems['quality'].'">...'.$i['name'].'</span>';
|
|
echo ' <small class="q0">'.sprintf(Lang::item('_chance'), $i['chance']).'</small><br />'.implode(', ', $eText).'</div></li>';
|
|
endif;
|
|
endforeach;
|
|
?>
|
|
</ul>
|
|
</div>
|
|
<?php
|
|
endif;
|
|
endif;
|
|
|
|
$this->brick('book');
|
|
?>
|
|
|
|
<h2 class="clear"><?=Lang::main('related'); ?></h2>
|
|
</div>
|
|
|
|
<?php
|
|
$this->brick('lvTabs');
|
|
|
|
$this->brick('contribute');
|
|
?>
|
|
|
|
<div class="clear"></div>
|
|
</div><!-- main-contents -->
|
|
</div><!-- main -->
|
|
|
|
<?php $this->brick('footer'); ?>
|