forked from confirm/PhpZabbixApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.inc.php
77 lines (63 loc) · 2.01 KB
/
config.inc.php
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
<?php
/**
* @file config.inc.php
*
* @brief Configuration file of the PhPZabbixApi builder.
*
* This file is part of PhpZabbixApi.
*
* PhpZabbixApi 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 3 of the License, or
* (at your option) any later version.
*
* PhpZabbixApi 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 PhpZabbixApi. If not, see <http://www.gnu.org/licenses/>.
*
* @copyright GNU General Public License
* @author confirm IT solutions GmbH, Rathausstrase 14, CH-6340 Baar
*/
/**
* @brief Class name for the abstract API class.
*/
define('CLASSNAME_ABSTRACT', 'ZabbixApiAbstract');
/**
* @brief Filename for the abstract API class.
*/
define('FILENAME_ABSTRACT', CLASSNAME_ABSTRACT.'.class.php');
/**
* @brief Class name for the concrete API class.
*/
define('CLASSNAME_CONCRETE', 'ZabbixApi');
/**
* @brief Filename for the abstract API class.
*/
define('FILENAME_CONCRETE', CLASSNAME_CONCRETE.'.class.php');
/**
* @brief Filesystem path to templates directory.
*
* This directory contains all templates to build the class files.
*/
define('PATH_TEMPLATES', 'templates');
/**
* @brief Filesystem path to build directory.
*
* This directory contains the built class files.
*/
define('PATH_BUILD', 'build');
/**
* @brief Filesystem path to the Zabbix PHP front-end root.
*
* Trailing slash not required!
*
* This constant is used to set the constants below. So if you've installed
* the Zabbix PHP front-end (v2) on the same server, you probably only have
* to update this constant!
*/
define('PATH_ZABBIX', '/home/charlie/Projects/PhpZabbixApi/Zabbix/frontends/php');
?>