* Modify the module tree on the left side of the editor.

This commit is contained in:
tianshujie
2023-03-10 17:16:34 +08:00
parent f8202098de
commit 0cd791fd4f
5 changed files with 42 additions and 36 deletions
+2 -1
View File
@@ -1087,7 +1087,8 @@ class devModel extends model
if(!in_array($type, array('module', 'table'))) return $tree;
$objects = $type == 'module' ? $this->getModules() : $this->getTables();
foreach($this->lang->dev->groupList as $moduleKey => $moduleName)
$groupList = array_merge($this->lang->dev->groupList, $this->lang->dev->endGroupList);
foreach($groupList as $moduleKey => $moduleName)
{
if(empty($objects[$moduleKey])) continue;
$module = new stdclass();