1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2019 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
global $DB, $ZBX_SERVER, $ZBX_SERVER_NAME, $ZBX_SERVER_PORT;
$page_title = $data['page']['title'];
if (isset($ZBX_SERVER_NAME) && $ZBX_SERVER_NAME !== '') {
$page_title = $ZBX_SERVER_NAME.NAME_DELIMITER.$page_title;
}
$pageHeader = new CPageHeader($page_title);
$scripts = $data['javascript']['files'];
$theme = ZBX_DEFAULT_THEME;
if (!empty($DB['DB'])) {
$config = select_config();
$theme = getUserTheme($data['user']);
$pageHeader->addStyle(getTriggerSeverityCss($config));
$pageHeader->addStyle(getTriggerStatusCss($config));
// perform Zabbix server check only for standard pages
if ($config['server_check_interval'] && !empty($ZBX_SERVER) && !empty($ZBX_SERVER_PORT)) {
$scripts[] = 'servercheck.js';
}
}
$pageHeader
->addCssFile('styles/'.CHtml::encode($theme).'.css')
->addJsBeforeScripts(
'var PHP_TZ_OFFSET = '.date('Z').','.
'PHP_ZBX_FULL_DATE_TIME = "'.ZBX_FULL_DATE_TIME.'";'
);
// show GUI messages in pages with menus and in fullscreen and kiosk mode
$showGuiMessaging = (!defined('ZBX_PAGE_NO_MENU')
|| in_array($data['web_layout_mode'], [ZBX_LAYOUT_FULLSCREEN, ZBX_LAYOUT_KIOSKMODE])) ? 1 : 0;
$pageHeader->addJsFile('js/browsers.js');
$path = 'jsLoader.php?ver='.ZABBIX_VERSION.'&lang='.$data['user']['lang'].'&showGuiMessaging='.$showGuiMessaging;
$pageHeader->addJsFile($path);
if ($scripts) {
$pageHeader->addJsFile('jsLoader.php?'.'files[]='.implode('&files[]=', $scripts).'&lang='.$data['user']['lang']);
}
$pageHeader->display();
echo '<body lang="'.CWebUser::getLang().'">';
echo '<output class="'.ZBX_STYLE_MSG_BAD_GLOBAL.'" id="msg-bad-global"></output>';
|