109 lines
3.2 KiB
PHP
109 lines
3.2 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The detail 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;
|
|
detailHeader
|
|
(
|
|
isAjaxRequest('modal') ? to::prefix() : '',
|
|
to::title(
|
|
entityLabel(
|
|
set(array('entityID' => $host->id, 'level' => 1, 'text' => $host->name))
|
|
)
|
|
),
|
|
);
|
|
|
|
$actions = $this->loadModel('common')->buildOperateMenu($host);
|
|
|
|
detailBody
|
|
(
|
|
sectionList
|
|
(
|
|
h::table
|
|
(
|
|
setClass('table table-fixed canvas host-view-table'),
|
|
h::tr
|
|
(
|
|
h::th($lang->host->name),
|
|
h::td($host->name),
|
|
h::th(),
|
|
h::td(),
|
|
),
|
|
h::tr
|
|
(
|
|
h::th($lang->host->group),
|
|
h::td($optionMenu[$host->group]),
|
|
h::th($lang->host->serverRoom),
|
|
h::td(zget($rooms, $host->serverRoom, "")),
|
|
),
|
|
h::tr
|
|
(
|
|
h::th($lang->host->serverModel),
|
|
h::td($host->serverModel),
|
|
h::th($lang->host->hostType),
|
|
h::td(zget($lang->host->hostTypeList, $host->hostType, "")),
|
|
),
|
|
h::tr
|
|
(
|
|
h::th($lang->host->cpuBrand),
|
|
h::td($host->cpuBrand),
|
|
h::th($lang->host->cpuModel),
|
|
h::td($host->cpuModel),
|
|
),
|
|
h::tr
|
|
(
|
|
h::th($lang->host->cpuNumber),
|
|
h::td($host->cpuNumber),
|
|
h::th($lang->host->cpuCores),
|
|
h::td($host->cpuCores),
|
|
),
|
|
h::tr
|
|
(
|
|
h::th($lang->host->memory),
|
|
h::td($host->memory ? $host->memory . ' GB' : ''),
|
|
h::th($lang->host->diskSize),
|
|
h::td($host->diskSize ? $host->diskSize . ' GB' : ''),
|
|
),
|
|
h::tr
|
|
(
|
|
h::th($lang->host->intranet),
|
|
h::td($host->intranet),
|
|
h::th($lang->host->extranet),
|
|
h::td($host->extranet),
|
|
),
|
|
h::tr
|
|
(
|
|
h::th($lang->host->osName),
|
|
h::td($host->osName),
|
|
h::th($lang->host->osVersion),
|
|
h::td($lang->host->{$host->osName.'List'}[$host->osVersion]),
|
|
),
|
|
h::tr
|
|
(
|
|
h::th($lang->host->status),
|
|
h::td($lang->host->statusList[$host->status]),
|
|
h::th(),
|
|
h::td(),
|
|
)
|
|
)
|
|
),
|
|
history
|
|
(
|
|
set::commentUrl(createLink('action', 'comment', array('objectType' => 'host', 'objectID' => $host->id))),
|
|
),
|
|
floatToolbar
|
|
(
|
|
set::object($host),
|
|
isAjaxRequest('modal') ? null : to::prefix(backBtn(set::icon('back'), set::class('ghost text-white'), $lang->goback)),
|
|
set::suffix($actions['suffixActions'])
|
|
),
|
|
);
|