67 lines
2.2 KiB
PHP
67 lines
2.2 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The browse view file of host 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 Ke Zhao<zhaoke@easycorp.ltd>
|
|
* @package host
|
|
* @link http://www.zentao.net
|
|
*/
|
|
|
|
namespace zin;
|
|
|
|
jsVar('orderBy', $orderBy);
|
|
jsVar('hostLang', $lang->host);
|
|
jsVar('sortLink', helper::createLink('host', 'browse', "browseType=$browseType¶m=$param&orderBy={orderBy}&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}"));
|
|
|
|
$config->host->featureBar[0]['active'] = true;
|
|
$config->host->featureBar[0]['badge'] = $pager->recTotal != '' ? array('text' => $pager->recTotal, 'class' => 'size-sm rounded-full white') : null;
|
|
featureBar
|
|
(
|
|
set::items($config->host->featureBar),
|
|
li(searchToggle())
|
|
);
|
|
|
|
/* zin: Define the toolbar on main menu. */
|
|
$canCreate = hasPriv('host', 'create');
|
|
$createLink = $this->createLink('host', 'create');
|
|
$createItem = array('text' => $lang->host->create, 'url' => $createLink, 'class' => 'primary', 'icon' => 'plus');
|
|
|
|
$config->host->dtable->fieldList['group']['map'] = $optionMenu;
|
|
$config->host->dtable->fieldList['admin']['map'] = $accounts;
|
|
$config->host->dtable->fieldList['serverRoom']['map'] = $rooms;
|
|
$tableData = initTableData($hostList, $config->host->dtable->fieldList, $this->host);
|
|
|
|
toolbar
|
|
(
|
|
$canCreate ? item(set($createItem)) : null,
|
|
);
|
|
|
|
/* zin: Define the sidebar in main content. */
|
|
sidebar
|
|
(
|
|
moduleMenu(set(array(
|
|
'modules' => $moduleTree,
|
|
'activeKey' => $param,
|
|
'allText' => $lang->host->group,
|
|
'settingText' => $lang->host->groupMaintenance,
|
|
'showDisplay' => false,
|
|
'settingLink' => $this->createLink('tree', 'browse', "productID=0&view=host"),
|
|
'closeLink' => $this->createLink('host', 'browse'),
|
|
)))
|
|
);
|
|
|
|
dtable
|
|
(
|
|
set::userMap($accounts),
|
|
set::cols(array_values($config->host->dtable->fieldList)),
|
|
set::data($tableData),
|
|
set::sortLink(jsRaw('createSortLink')),
|
|
set::onRenderCell(jsRaw('window.renderCell')),
|
|
set::footPager(usePager()),
|
|
);
|
|
|
|
render();
|