60 lines
1.9 KiB
PHP
60 lines
1.9 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The browse view file of zahost 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 Zeng Gang<zenggang@easycorp.ltd>
|
|
* @package zahost
|
|
* @link https://www.zentao.net
|
|
*/
|
|
namespace zin;
|
|
|
|
jsVar('webRoot', getWebRoot());
|
|
jsVar('undeletedNotice', $lang->zahost->undeletedNotice);
|
|
jsVar('uninitNotice', $lang->zahost->uninitNotice);
|
|
|
|
$createItem = array('text' => $lang->zahost->create, 'url' => createLink('zahost', 'create'), 'icon' => 'plus', 'class' => 'btn primary');
|
|
|
|
foreach($hostList as $host)
|
|
{
|
|
$host->memory .= $lang->zahost->unitList['GB'];
|
|
$host->diskSize .= $lang->zahost->unitList['GB'];
|
|
|
|
$host->canDelete = !empty($nodeList[$host->hostID]) ? false : true;
|
|
}
|
|
|
|
$hostList = initTableData($hostList, $config->zahost->dtable->fieldList, $this->zahost);
|
|
|
|
\zin\featureBar
|
|
(
|
|
li(searchToggle(set::open($browseType == 'bysearch'))),
|
|
a
|
|
(
|
|
setClass('btn btn-link'),
|
|
icon('help'),
|
|
$lang->help,
|
|
set('target', '_blank'),
|
|
set::href('https://www.zentao.net/book/zentaopms/978.html?fullScreen=zentao')
|
|
)
|
|
);
|
|
|
|
toolBar
|
|
(
|
|
hasPriv('zahost', 'create') ? item(set($createItem)) : null
|
|
);
|
|
|
|
dtable
|
|
(
|
|
set::cols($config->zahost->dtable->fieldList),
|
|
set::data($hostList),
|
|
set::onRenderCell(jsRaw('window.renderList')),
|
|
set::afterRender(jsRaw('window.afterRender')),
|
|
set::sortLink(createLink('zahost', 'browse', "browseType={$browseType}¶m={$param}&orderBy={name}_{sortType}&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}")),
|
|
set::footPager(usePager()),
|
|
set::orderBy(str_replace('id_', 'hostID_', $orderBy))
|
|
);
|
|
|
|
render();
|
|
|