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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
<?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.
**/
/**
* A class for Zabbix re-branding.
*/
class CBrandHelper {
const BRAND_CONFIG_FILE_PATH = '/../../../local/conf/brand.conf.php';
/**
* Brand configuration array.
*
* @var array
*/
private static $config = [];
/**
* Lazy configuration loading.
*/
private static function loadConfig() {
if (!self::$config) {
$config_file_path = realpath(dirname(__FILE__).self::BRAND_CONFIG_FILE_PATH);
if (file_exists($config_file_path)) {
self::$config = include $config_file_path;
if (is_array(self::$config)) {
self::$config['IS_REBRANDED'] = true;
}
else {
self::$config = [];
}
}
}
}
/**
* Get value by key from configuration (load configuration if need).
*
* @param string $key configuration key
* @param mixed $default default value
*
* @return mixed
*/
private static function getValue($key, $default = false) {
self::loadConfig();
return (array_key_exists($key, self::$config) ? self::$config[$key] : $default);
}
/**
* Is branding active ?
*
* @return boolean
*/
public static function isRebranded() {
return self::getValue('IS_REBRANDED');
}
/**
* Get help URL.
*
* @return string
*/
public static function getHelpUrl() {
return self::getValue('BRAND_HELP_URL', 'https://www.zabbix.com/documentation/4.0/');
}
/**
* Get logo style.
*
* @return string|null
*/
public static function getLogoStyle() {
$logo = self::getValue('BRAND_LOGO', null);
return ($logo !== null)
? 'background: url("'.$logo.'") no-repeat center center; background-size: contain;'
: null;
}
/**
* Get footer content.
*
* @param boolean $with_version
*
* @return array
*/
public static function getFooterContent($with_version) {
$footer = self::getValue(
'BRAND_FOOTER',
[
$with_version ? 'Zabbix '.ZABBIX_VERSION.'. ' : null,
'© '.ZABBIX_COPYRIGHT_FROM.'–'.ZABBIX_COPYRIGHT_TO.', ',
(new CLink('Zabbix SIA', 'http://www.zabbix.com/'))
->addClass(ZBX_STYLE_GREY)
->addClass(ZBX_STYLE_LINK_ALT)
->setAttribute('target', '_blank')
]
);
if (!is_array($footer)) {
$footer = [$footer];
}
return $footer;
}
}
|