* code for dev group.

This commit is contained in:
wangyidong
2018-11-19 17:25:29 +08:00
parent e576594489
commit 6c447de480
6 changed files with 47 additions and 6 deletions
+12
View File
@@ -16,6 +16,18 @@
<?php endforeach;?>
<?php endif;?>
<?php endforeach;?>
<?php foreach($lang->dev->endGroupList as $group => $groupName):?>
<?php if(isset($tables[$group])):?>
<div class='modulegroup'><?php echo $groupName?></div>
<?php foreach($tables[$group] as $subTable => $table):?>
<?php
$active = ($table == $selectedTable) ? 'active' : '';
$tableName = zget($lang->dev->tableList, $subTable, $table);
?>
<?php echo html::a(inlink('db', "table=$table"), $tableName, '', "class='$active'");?>
<?php endforeach;?>
<?php endif;?>
<?php endforeach;?>
</div>
</div>
</div>