| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- /**
- * The db view file of dev module of ZenTaoPMS.
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
- * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Wang Yidong<yidong@easycorp.ltd>
- * @package dev
- * @link https://www.zentao.net
- */
- namespace zin;
- $fnBuildContent = function() use ($fields, $selectedTable)
- {
- global $lang;
- $trItems = array();
- $i = 1;
- foreach($fields as $key => $field)
- {
- $trItems[] = h::tr
- (
- h::td($i),
- h::td($key),
- h::td($field['name']),
- h::td(setClass('break-all'), $field['type']),
- h::td(isset($field['options']['max']) ? $field['options']['max'] : ''),
- h::td($field['null'])
- );
- $i++;
- }
- return panel
- (
- set::title($selectedTable),
- set::bodyClass('p-0'),
- h::table
- (
- setClass('table bordered'),
- h::thead
- (
- h::tr
- (
- h::th(setClass('w-20'), $lang->dev->fields['id']),
- h::th(setClass('w-20'), $lang->dev->fields['name']),
- h::th(setClass('w-40'), $lang->dev->fields['desc']),
- h::th($lang->dev->fields['type']),
- h::th(setClass('w-20'), $lang->dev->fields['length']),
- h::th(setClass('w-28'), $lang->dev->fields['null'])
- )
- ),
- h::tbody($trItems)
- )
- );
- };
- $activeGroup = '';
- foreach($tableTree as $module)
- {
- if($module->active) $activeGroup = $module->id;
- }
- h::css("
- .sidebar .tree [data-level=\"0\"][id=\"{$activeGroup}\"] {color: var(--color-primary-600); font-weight:bolder}
- .sidebar .tree [data-level=\"1\"][id=\"{$selectedTable}\"] {color: var(--color-primary-600); font-weight:bolder}
- ");
- sidebar
- (
- setClass('bg-white'),
- h::header(setClass('h-10 flex items-center pl-4 flex-none gap-3'), span(setClass('text-lg font-semibold'), icon(setClass('pr-2'), 'list'), $lang->dev->dbList)),
- treeEditor(set(array('items' => $tableTree, 'canEdit' => false, 'canDelete' => false, 'canSplit' => false)))
- );
- div
- (
- setClass('bg-white'),
- $selectedTable ? $fnBuildContent() : null
- );
|