Files
EasySoft-ZenTaoPMS/module/report/view/blockreportlist.html.php
2012-07-11 08:36:27 +00:00

14 lines
397 B
PHP

<div class='box-title'><?php echo $lang->report->list;?></div>
<div class='box-content'>
<ul id="report-list">
<?php
ksort($lang->reportList->$submenu->lists);
foreach($lang->reportList->$submenu->lists as $list)
{
list($label, $module, $method) = explode('|', $list);
echo '<li>' . html::a($this->createLink($module, $method), $label) . '</li>';
}
?>
</ul>
</div>