19 lines
622 B
PHP
Executable File
19 lines
622 B
PHP
Executable File
<table class='table-1'>
|
|
<tr class='colhead'><?php foreach($lang->misc->zentao->labels as $label) echo "<th class='w-p25'>$label</th>";?></tr>
|
|
<?php
|
|
unset($lang->misc->zentao->version);
|
|
unset($lang->misc->zentao->labels);
|
|
?>
|
|
<tr class='a-left' valign='top'>
|
|
<?php foreach($lang->misc->zentao as $groupItems):?>
|
|
<td>
|
|
<ul>
|
|
<?php foreach($groupItems as $item => $label):?>
|
|
<li><?php echo html::a("http://www.zentao.net/goto.php?item=$item&from=about", $label, '_blank', "id='$item'");;?></li>
|
|
<?php endforeach;?>
|
|
</ul>
|
|
</td>
|
|
<?php endforeach;?>
|
|
</tr>
|
|
</table>
|