* update TrinityCore components to return new Frontend objects - SmartAI => Markup - Conditions => Data Listview * update template files to accept the new Frontend objects
17 lines
376 B
PHP
17 lines
376 B
PHP
<?php
|
|
namespace Aowow\Template;
|
|
|
|
use \Aowow\Lang;
|
|
?>
|
|
|
|
<tr><th id="infobox-series"><?=$listTitle ?: Lang::achievement('series'); ?></th></tr>
|
|
<tr><td>
|
|
<div class="infobox-spacer"></div>
|
|
<table class="series">
|
|
<?php
|
|
foreach ($list as $idx => $itr):
|
|
echo $this->renderSeriesItem($idx, $itr, 12);
|
|
endforeach;
|
|
?>
|
|
</table>
|
|
</td></tr>
|