2012-03-21 09:50:14 +01:00
|
|
|
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
|
|
|
// Copyright (c) 2005-2012 Artica Soluciones Tecnologicas
|
|
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation; version 2
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package Include
|
|
|
|
* @subpackage Constants
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Enterprise hook constant */
|
2014-12-16 16:39:00 +01:00
|
|
|
define ('ENTERPRISE_NOT_HOOK', -1);
|
2012-03-21 09:50:14 +01:00
|
|
|
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
2013-06-11 Miguel de Dios <miguel.dedios@artica.es>
* extensions/insert_data.php,
godmode/alerts/configure_alert_template.php,
godmode/reporting/reporting_builder.item_editor.php,
godmode/agentes/planned_downtime.editor.php,
include/ajax/module.php, include/constants.php, operation/tree.php,
operation/netflow/nf_live_view.php,
operation/reporting/reporting_viewer.php,
operation/reporting/graph_viewer.php,
operation/agentes/datos_agente.php: fixed the date and time format
and set a help tip to say the Pandora's format.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8287 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-06-11 15:14:48 +02:00
|
|
|
/**/
|
2014-12-16 16:39:00 +01:00
|
|
|
define('DATE_FORMAT', 'Y/m/d');
|
2015-08-10 17:02:36 +02:00
|
|
|
define('DATE_FORMAT_JS', 'yy/mm/dd');
|
2014-12-16 16:39:00 +01:00
|
|
|
define('TIME_FORMAT', 'H:i:s');
|
|
|
|
define('TIME_FORMAT_JS', 'HH:mm:ss');
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
2012-03-21 09:50:14 +01:00
|
|
|
/* Events state constants */
|
2014-12-16 16:39:00 +01:00
|
|
|
define ('EVENT_NEW', 0);
|
|
|
|
define ('EVENT_VALIDATE', 1);
|
|
|
|
define ('EVENT_PROCESS', 2);
|
2012-03-21 09:50:14 +01:00
|
|
|
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
|
|
|
|
2012-03-21 09:50:14 +01:00
|
|
|
/* Agents disabled status */
|
2014-12-16 16:39:00 +01:00
|
|
|
define ('AGENT_ENABLED', 0);
|
|
|
|
define ('AGENT_DISABLED', 1);
|
2012-03-21 09:50:14 +01:00
|
|
|
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
|
|
|
|
2012-03-21 09:50:14 +01:00
|
|
|
/* Error report codes */
|
2015-06-26 11:59:32 +02:00
|
|
|
define ('NOERR', 11111);
|
|
|
|
define ('ERR_GENERIC', -10000);
|
|
|
|
define ('ERR_EXIST', -20000);
|
|
|
|
define ('ERR_INCOMPLETE', -30000);
|
|
|
|
define ('ERR_DB', -40000);
|
|
|
|
define ('ERR_DB_HOST', -40001);
|
|
|
|
define ('ERR_DB_DB', -40002);
|
|
|
|
define ('ERR_FILE', -50000);
|
|
|
|
define ('ERR_NOCHANGES', -60000);
|
|
|
|
define ('ERR_NODATA', -70000);
|
|
|
|
define ('ERR_CONNECTION', -80000);
|
|
|
|
define ('ERR_DISABLED', -90000);
|
|
|
|
define ('ERR_WRONG', -100000);
|
|
|
|
define ('ERR_WRONG_NAME', -100001);
|
|
|
|
define ('ERR_WRONG_PARAMETERS', -100002);
|
|
|
|
define ('ERR_ACL', -110000);
|
|
|
|
define ('ERR_AUTH', -120000);
|
|
|
|
define ('ERR_COULDNT_RESOLVE_HOST', -130000);
|
2012-03-21 09:50:14 +01:00
|
|
|
|
2012-10-11 19:49:17 +02:00
|
|
|
/* Event status code */
|
2014-11-21 10:42:14 +01:00
|
|
|
define ('EVENT_STATUS_NEW', 0);
|
|
|
|
define ('EVENT_STATUS_INPROCESS', 2);
|
|
|
|
define ('EVENT_STATUS_VALIDATED', 1);
|
2012-03-21 09:50:14 +01:00
|
|
|
|
|
|
|
/* Seconds in a time unit constants */
|
2015-06-11 20:45:40 +02:00
|
|
|
define('SECONDS_1MINUTE', 60);
|
|
|
|
define('SECONDS_2MINUTES', 120);
|
|
|
|
define('SECONDS_5MINUTES', 300);
|
|
|
|
define('SECONDS_10MINUTES', 600);
|
|
|
|
define('SECONDS_15MINUTES', 900);
|
|
|
|
define('SECONDS_30MINUTES', 1800);
|
|
|
|
define('SECONDS_1HOUR', 3600);
|
|
|
|
define('SECONDS_2HOUR', 7200);
|
|
|
|
define('SECONDS_3HOUR', 10800);
|
|
|
|
define('SECONDS_5HOUR', 18000);
|
|
|
|
define('SECONDS_6HOURS', 21600);
|
|
|
|
define('SECONDS_12HOURS', 43200);
|
|
|
|
define('SECONDS_1DAY', 86400);
|
|
|
|
define('SECONDS_2DAY', 172800);
|
|
|
|
define('SECONDS_4DAY', 345600);
|
|
|
|
define('SECONDS_5DAY', 432000);
|
|
|
|
define('SECONDS_1WEEK', 604800);
|
|
|
|
define('SECONDS_10DAY', 864000);
|
|
|
|
define('SECONDS_2WEEK', 1209600);
|
|
|
|
define('SECONDS_15DAYS', 1296000);
|
|
|
|
define('SECONDS_1MONTH', 2592000);
|
|
|
|
define('SECONDS_2MONTHS', 5184000);
|
|
|
|
define('SECONDS_3MONTHS', 7776000);
|
|
|
|
define('SECONDS_6MONTHS', 15552000);
|
|
|
|
define('SECONDS_1YEAR', 31104000);
|
|
|
|
define('SECONDS_2YEARS', 62208000);
|
|
|
|
define('SECONDS_3YEARS', 93312000);
|
2012-03-21 09:50:14 +01:00
|
|
|
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
|
|
|
|
2012-03-27 09:44:54 +02:00
|
|
|
/* Separator constats */
|
2014-12-16 16:39:00 +01:00
|
|
|
define('SEPARATOR_COLUMN', ';');
|
|
|
|
define('SEPARATOR_ROW', chr(10)); //chr(10) = '\n'
|
|
|
|
define('SEPARATOR_COLUMN_CSV', "#");
|
|
|
|
define('SEPARATOR_ROW_CSV', "@\n");
|
2012-03-27 09:44:54 +02:00
|
|
|
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
|
|
|
|
2012-05-03 13:29:04 +02:00
|
|
|
/* Backup paths */
|
|
|
|
switch ($config["dbtype"]) {
|
|
|
|
case "mysql":
|
|
|
|
case "postgresql":
|
2014-12-16 16:39:00 +01:00
|
|
|
define ('BACKUP_DIR', 'attachment/backups');
|
|
|
|
define ('BACKUP_FULLPATH', $config['homedir'] . '/' . BACKUP_DIR);
|
2012-05-03 13:29:04 +02:00
|
|
|
break;
|
|
|
|
case "oracle":
|
2014-12-16 16:39:00 +01:00
|
|
|
define ('BACKUP_DIR', 'DATA_PUMP_DIR');
|
|
|
|
define ('BACKUP_FULLPATH', 'DATA_PUMP_DIR');
|
2012-05-03 13:29:04 +02:00
|
|
|
break;
|
|
|
|
}
|
2012-05-16 16:52:49 +02:00
|
|
|
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
|
|
|
|
2012-05-16 16:52:49 +02:00
|
|
|
/* Color constants */
|
2015-04-15 09:45:13 +02:00
|
|
|
define('COL_CRITICAL', '#FC4444');
|
|
|
|
define('COL_WARNING', '#FAD403');
|
2014-12-16 16:39:00 +01:00
|
|
|
define('COL_WARNING_DARK', '#FFB900');
|
2015-04-15 09:45:13 +02:00
|
|
|
define('COL_NORMAL', '#80BA27');
|
2014-12-16 16:39:00 +01:00
|
|
|
define('COL_NOTINIT', '#3BA0FF');
|
2015-04-15 09:45:13 +02:00
|
|
|
define('COL_UNKNOWN', '#B2B2B2');
|
|
|
|
define('COL_ALERTFIRED', '#FFA631');
|
2014-12-16 16:39:00 +01:00
|
|
|
define('COL_MINOR', '#F099A2');
|
|
|
|
define('COL_MAJOR', '#C97A4A');
|
|
|
|
define('COL_INFORMATIONAL', '#E4E4E4');
|
|
|
|
define('COL_MAINTENANCE', '#3BA0FF');
|
|
|
|
|
|
|
|
define('COL_GRAPH1', '#C397F2');
|
|
|
|
define('COL_GRAPH2', '#FFE66C');
|
|
|
|
define('COL_GRAPH3', '#92CCA3');
|
|
|
|
define('COL_GRAPH4', '#EA6D5B');
|
|
|
|
define('COL_GRAPH5', '#6BD8DD');
|
|
|
|
define('COL_GRAPH6', '#F49B31');
|
|
|
|
define('COL_GRAPH7', '#999999');
|
|
|
|
define('COL_GRAPH8', '#F2B8C1');
|
|
|
|
define('COL_GRAPH9', '#C4E8C1');
|
|
|
|
define('COL_GRAPH10', '#C1DBE5');
|
|
|
|
define('COL_GRAPH11', '#C9C1e0');
|
|
|
|
define('COL_GRAPH12', '#F45B95');
|
|
|
|
define('COL_GRAPH13', '#E83128');
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
|
|
|
|
2012-06-13 20:01:43 +02:00
|
|
|
/* The styles */
|
|
|
|
/* Size of text in characters for truncate */
|
2014-12-16 16:39:00 +01:00
|
|
|
define('GENERIC_SIZE_TEXT', 25);
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-10 13:37:14 +02:00
|
|
|
/* Agent module status */
|
2015-03-06 13:45:54 +01:00
|
|
|
define('AGENT_MODULE_STATUS_ALL', -1);
|
2014-12-16 16:39:00 +01:00
|
|
|
define('AGENT_MODULE_STATUS_CRITICAL_BAD', 1);
|
|
|
|
define('AGENT_MODULE_STATUS_CRITICAL_ALERT', 100);
|
|
|
|
define('AGENT_MODULE_STATUS_NO_DATA', 4);
|
|
|
|
define('AGENT_MODULE_STATUS_NORMAL', 0);
|
|
|
|
define('AGENT_MODULE_STATUS_NORMAL_ALERT', 300);
|
|
|
|
define('AGENT_MODULE_STATUS_NOT_NORMAL', 6);
|
|
|
|
define('AGENT_MODULE_STATUS_WARNING', 2);
|
|
|
|
define('AGENT_MODULE_STATUS_WARNING_ALERT', 200);
|
|
|
|
define('AGENT_MODULE_STATUS_UNKNOWN', 3);
|
|
|
|
define('AGENT_MODULE_STATUS_NOT_INIT', 5);
|
2012-07-10 13:37:14 +02:00
|
|
|
|
2014-03-20 Miguel de Dios <miguel.dedios@artica.es>
* images/group_green.disabled.png, images/group_green.png,
extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
godmode/agentes/configurar_agente.php, include/styles/pandora.css,
include/functions_networkmap.php, include/functions_agents.php,
include/functions_visual_map_editor.php,
include/functions_modules.php, include/functions_groups.php,
include/constants.php, include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql: added the feature to
show the item for groups in visualmap.
Incident: #671
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9621 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-03-20 17:43:42 +01:00
|
|
|
/* Agent status */
|
2014-12-16 16:39:00 +01:00
|
|
|
define('AGENT_STATUS_ALL', -1);
|
|
|
|
define('AGENT_STATUS_CRITICAL', 1);
|
|
|
|
define('AGENT_STATUS_NORMAL', 0);
|
|
|
|
define('AGENT_STATUS_NOT_INIT', 5);
|
|
|
|
define('AGENT_STATUS_NOT_NORMAL', 6);
|
|
|
|
define('AGENT_STATUS_UNKNOWN', 3);
|
|
|
|
define('AGENT_STATUS_ALERT_FIRED', 4);
|
|
|
|
define('AGENT_STATUS_WARNING', 2);
|
2012-07-10 13:37:14 +02:00
|
|
|
|
2013-07-30 17:02:07 +02:00
|
|
|
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
/* Visual maps contants */
|
|
|
|
//The items kind
|
2014-11-21 10:42:14 +01:00
|
|
|
define('STATIC_GRAPH', 0);
|
|
|
|
define('PERCENTILE_BAR', 3);
|
|
|
|
define('MODULE_GRAPH', 1);
|
|
|
|
define('SIMPLE_VALUE', 2);
|
|
|
|
define('LABEL', 4);
|
|
|
|
define('ICON', 5);
|
|
|
|
define('SIMPLE_VALUE_MAX', 6);
|
|
|
|
define('SIMPLE_VALUE_MIN', 7);
|
|
|
|
define('SIMPLE_VALUE_AVG', 8);
|
|
|
|
define('PERCENTILE_BUBBLE', 9);
|
|
|
|
define('SERVICE', 10); //Enterprise Item.
|
|
|
|
define('GROUP_ITEM', 11);
|
|
|
|
define('BOX_ITEM', 12);
|
2014-11-24 16:40:59 +01:00
|
|
|
define('LINE_ITEM', 13);
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
//Some styles
|
2014-11-21 10:42:14 +01:00
|
|
|
define('MIN_WIDTH', 300);
|
|
|
|
define('MIN_HEIGHT', 120);
|
|
|
|
define('MIN_WIDTH_CAPTION', 420);
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
//The process for simple value
|
2014-11-21 10:42:14 +01:00
|
|
|
define('PROCESS_VALUE_NONE', 0);
|
|
|
|
define('PROCESS_VALUE_MIN', 1);
|
|
|
|
define('PROCESS_VALUE_MAX', 2);
|
|
|
|
define('PROCESS_VALUE_AVG', 3);
|
2012-07-06 13:45:02 +02:00
|
|
|
//Status
|
2014-11-21 10:42:14 +01:00
|
|
|
define('VISUAL_MAP_STATUS_CRITICAL_BAD', 1);
|
|
|
|
define('VISUAL_MAP_STATUS_CRITICAL_ALERT', 4);
|
2015-06-11 20:45:40 +02:00
|
|
|
define('VISUAL_MAP_STATUS_NORMAL', 0);
|
2014-11-21 10:42:14 +01:00
|
|
|
define('VISUAL_MAP_STATUS_WARNING', 2);
|
|
|
|
define('VISUAL_MAP_STATUS_UNKNOWN', 3);
|
|
|
|
define('VISUAL_MAP_STATUS_WARNING_ALERT', 10);
|
2014-03-21 15:12:47 +01:00
|
|
|
//Wizard
|
2014-11-21 10:42:14 +01:00
|
|
|
define('VISUAL_MAP_WIZARD_PARENTS_NONE', 0);
|
|
|
|
define('VISUAL_MAP_WIZARD_PARENTS_ITEM_MAP', 1);
|
|
|
|
define('VISUAL_MAP_WIZARD_PARENTS_AGENT_RELANTIONSHIP', 2);
|
2012-07-06 13:45:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Service constants */
|
|
|
|
//Status
|
2015-02-16 18:37:16 +01:00
|
|
|
define('SERVICE_STATUS_UNKNOWN', -1);
|
|
|
|
define('SERVICE_STATUS_NORMAL', 0);
|
|
|
|
define('SERVICE_STATUS_CRITICAL', 1);
|
|
|
|
define('SERVICE_STATUS_WARNING', 2);
|
|
|
|
define('SERVICE_STATUS_ALERT', 4);
|
2012-07-18 15:25:51 +02:00
|
|
|
//Default weights
|
2015-02-16 18:37:16 +01:00
|
|
|
define('SERVICE_WEIGHT_CRITICAL', 1);
|
|
|
|
define('SERVICE_WEIGHT_WARNING', 0.5);
|
|
|
|
define('SERVICE_ELEMENT_WEIGHT_CRITICAL', 1);
|
|
|
|
define('SERVICE_ELEMENT_WEIGHT_WARNING', 0.5);
|
|
|
|
define('SERVICE_ELEMENT_WEIGHT_OK', 0);
|
|
|
|
define('SERVICE_ELEMENT_WEIGHT_UNKNOWN', 0);
|
2014-08-27 19:09:07 +02:00
|
|
|
//Modes
|
2015-02-16 18:37:16 +01:00
|
|
|
define('SERVICE_MODE_MANUAL', 0);
|
|
|
|
define('SERVICE_MODE_AUTO', 1);
|
|
|
|
define('SERVICE_MODE_SIMPLE', 2);
|
2012-07-10 13:37:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Status images */
|
|
|
|
//For modules
|
2015-02-16 18:37:16 +01:00
|
|
|
define ('STATUS_MODULE_OK', 'module_ok.png');
|
|
|
|
define ('STATUS_MODULE_CRITICAL', 'module_critical.png');
|
|
|
|
define ('STATUS_MODULE_WARNING', 'module_warning.png');
|
|
|
|
define ('STATUS_MODULE_NO_DATA', 'module_no_data.png');
|
|
|
|
define ('STATUS_MODULE_UNKNOWN', 'module_unknown.png');
|
2012-07-10 13:37:14 +02:00
|
|
|
//For agents
|
2015-02-16 18:37:16 +01:00
|
|
|
define ('STATUS_AGENT_CRITICAL', 'agent_critical.png');
|
|
|
|
define ('STATUS_AGENT_WARNING', 'agent_warning.png');
|
|
|
|
define ('STATUS_AGENT_DOWN', 'agent_down.png');
|
|
|
|
define ('STATUS_AGENT_UNKNOWN', 'agent_unknown.png');
|
|
|
|
define ('STATUS_AGENT_OK', 'agent_ok.png');
|
|
|
|
define ('STATUS_AGENT_NO_DATA', 'agent_no_data.png');
|
|
|
|
define ('STATUS_AGENT_NO_MONITORS', 'agent_no_monitors.png');
|
|
|
|
define ('STATUS_AGENT_NOT_INIT', 'agent_notinit.png');
|
2012-07-10 13:37:14 +02:00
|
|
|
//For alerts
|
2015-02-16 18:37:16 +01:00
|
|
|
define ('STATUS_ALERT_FIRED', 'alert_fired.png');
|
|
|
|
define ('STATUS_ALERT_NOT_FIRED', 'alert_not_fired.png');
|
|
|
|
define ('STATUS_ALERT_DISABLED', 'alert_disabled.png');
|
2012-07-10 13:37:14 +02:00
|
|
|
//For servers
|
2015-02-16 18:37:16 +01:00
|
|
|
define ('STATUS_SERVER_OK', 'server_ok.png');
|
|
|
|
define ('STATUS_SERVER_DOWN', 'server_down.png');
|
2013-01-15 12:12:35 +01:00
|
|
|
|
2013-01-30 14:53:02 +01:00
|
|
|
|
2015-01-12 11:01:17 +01:00
|
|
|
/* Status images (ball) */
|
|
|
|
//For modules
|
2015-06-11 20:45:40 +02:00
|
|
|
define ('STATUS_MODULE_OK_BALL', 'module_ok_ball.png');
|
|
|
|
define ('STATUS_MODULE_CRITICAL_BALL', 'module_critical_ball.png');
|
|
|
|
define ('STATUS_MODULE_WARNING_BALL', 'module_warning_ball.png');
|
|
|
|
define ('STATUS_MODULE_NO_DATA_BALL', 'module_no_data_ball.png');
|
|
|
|
define ('STATUS_MODULE_UNKNOWN_BALL', 'module_unknown_ball.png');
|
2015-01-12 11:01:17 +01:00
|
|
|
//For agents
|
2015-06-11 20:45:40 +02:00
|
|
|
define ('STATUS_AGENT_CRITICAL_BALL', 'agent_critical_ball.png');
|
|
|
|
define ('STATUS_AGENT_WARNING_BALL', 'agent_warning_ball.png');
|
|
|
|
define ('STATUS_AGENT_DOWN_BALL', 'agent_down_ball.png');
|
|
|
|
define ('STATUS_AGENT_UNKNOWN_BALL', 'agent_unknown_ball.png');
|
|
|
|
define ('STATUS_AGENT_OK_BALL', 'agent_ok_ball.png');
|
|
|
|
define ('STATUS_AGENT_NO_DATA_BALL', 'agent_no_data_ball.png');
|
|
|
|
define ('STATUS_AGENT_NO_MONITORS_BALL', 'agent_no_monitors_ball.png');
|
|
|
|
define ('STATUS_AGENT_NOT_INIT_BALL', 'agent_notinit_ball.png');
|
2015-01-12 11:01:17 +01:00
|
|
|
//For alerts
|
2015-06-11 20:45:40 +02:00
|
|
|
define ('STATUS_ALERT_FIRED_BALL', 'alert_fired_ball.png');
|
|
|
|
define ('STATUS_ALERT_NOT_FIRED_BALL', 'alert_not_fired_ball.png');
|
|
|
|
define ('STATUS_ALERT_DISABLED_BALL', 'alert_disabled_ball.png');
|
2015-01-12 11:01:17 +01:00
|
|
|
//For servers
|
2015-06-11 20:45:40 +02:00
|
|
|
define ('STATUS_SERVER_OK_BALL', 'server_ok_ball.png');
|
|
|
|
define ('STATUS_SERVER_DOWN_BALL', 'server_down_ball.png');
|
2015-01-12 11:01:17 +01:00
|
|
|
|
|
|
|
|
2013-01-30 14:53:02 +01:00
|
|
|
|
2013-01-15 12:12:35 +01:00
|
|
|
/* Events criticity */
|
2015-06-11 20:45:40 +02:00
|
|
|
define ('EVENT_CRIT_MAINTENANCE', 0);
|
|
|
|
define ('EVENT_CRIT_INFORMATIONAL', 1);
|
|
|
|
define ('EVENT_CRIT_NORMAL', 2);
|
|
|
|
define ('EVENT_CRIT_MINOR', 5);
|
|
|
|
define ('EVENT_CRIT_WARNING', 3);
|
|
|
|
define ('EVENT_CRIT_MAJOR', 6);
|
|
|
|
define ('EVENT_CRIT_CRITICAL', 4);
|
|
|
|
define ('EVENT_CRIT_WARNING_OR_CRITICAL', 34);
|
|
|
|
define ('EVENT_CRIT_NOT_NORMAL', 20);
|
2015-07-21 10:40:29 +02:00
|
|
|
define ('EVENT_CRIT_OR_NORMAL', 21);
|
2013-01-15 12:12:35 +01:00
|
|
|
|
2013-01-30 14:53:02 +01:00
|
|
|
/* Id Module (more use in component)*/
|
2015-06-11 20:45:40 +02:00
|
|
|
define ('MODULE_DATA', 1);
|
|
|
|
define ('MODULE_NETWORK', 2);
|
|
|
|
define ('MODULE_SNMP', 2);
|
|
|
|
define ('MODULE_PLUGIN', 4);
|
|
|
|
define ('MODULE_PREDICTION', 5);
|
|
|
|
define ('MODULE_WMI', 6);
|
|
|
|
define ('MODULE_WEB', 7);
|
2013-02-14 16:03:07 +01:00
|
|
|
|
2013-07-30 16:10:05 +02:00
|
|
|
/* Type of Modules of Prediction */
|
2015-06-11 20:45:40 +02:00
|
|
|
define ('MODULE_PREDICTION_SERVICE', 2);
|
|
|
|
define ('MODULE_PREDICTION_SYNTHETIC', 3);
|
|
|
|
define ('MODULE_PREDICTION_NETFLOW', 4);
|
2013-07-30 16:10:05 +02:00
|
|
|
|
2013-02-14 16:03:07 +01:00
|
|
|
/* SNMP CONSTANTS */
|
2015-06-11 20:45:40 +02:00
|
|
|
define('SNMP_DIR_MIBS', "attachment/mibs");
|
|
|
|
|
|
|
|
define('SNMP_TRAP_TYPE_NONE', -1);
|
|
|
|
define('SNMP_TRAP_TYPE_COLD_START', 0);
|
|
|
|
define('SNMP_TRAP_TYPE_WARM_START', 1);
|
|
|
|
define('SNMP_TRAP_TYPE_LINK_DOWN', 2);
|
|
|
|
define('SNMP_TRAP_TYPE_LINK_UP', 3);
|
|
|
|
define('SNMP_TRAP_TYPE_AUTHENTICATION_FAILURE', 4);
|
|
|
|
define('SNMP_TRAP_TYPE_OTHER', 5);
|
2013-02-26 17:31:40 +01:00
|
|
|
|
|
|
|
/* PASSWORD POLICIES */
|
2015-06-11 20:45:40 +02:00
|
|
|
define('PASSSWORD_POLICIES_OK', 0);
|
|
|
|
define('PASSSWORD_POLICIES_FIRST_CHANGE', 1);
|
|
|
|
define('PASSSWORD_POLICIES_EXPIRED', 2);
|
2013-02-27 18:11:42 +01:00
|
|
|
|
|
|
|
/* SERVER TYPES */
|
2015-06-11 20:45:40 +02:00
|
|
|
define('SERVER_TYPE_DATA', 0);
|
|
|
|
define('SERVER_TYPE_NETWORK', 1);
|
|
|
|
define('SERVER_TYPE_SNMP', 2);
|
|
|
|
define('SERVER_TYPE_RECON', 3);
|
|
|
|
define('SERVER_TYPE_PLUGIN', 4);
|
|
|
|
define('SERVER_TYPE_PREDICTION', 5);
|
|
|
|
define('SERVER_TYPE_WMI', 6);
|
|
|
|
define('SERVER_TYPE_EXPORT', 7);
|
|
|
|
define('SERVER_TYPE_INVENTORY', 8);
|
|
|
|
define('SERVER_TYPE_WEB', 9);
|
|
|
|
define('SERVER_TYPE_EVENT', 10);
|
|
|
|
define('SERVER_TYPE_ENTERPRISE_ICMP', 11);
|
|
|
|
define('SERVER_TYPE_ENTERPRISE_SNMP', 12);
|
2015-10-14 14:57:10 +02:00
|
|
|
define('SERVER_TYPE_ENTERPRISE_SATELLITE', 13);
|
2013-03-04 15:31:30 +01:00
|
|
|
|
|
|
|
/* REPORTS */
|
2015-06-11 20:45:40 +02:00
|
|
|
define('REPORT_TOP_N_MAX', 1);
|
|
|
|
define('REPORT_TOP_N_MIN', 2);
|
|
|
|
define('REPORT_TOP_N_AVG', 0);
|
|
|
|
|
|
|
|
define('REPORT_TOP_N_ONLY_GRAPHS', 2);
|
|
|
|
define('REPORT_TOP_N_SHOW_TABLE_GRAPS', 1);
|
|
|
|
define('REPORT_TOP_N_ONLY_TABLE', 0);
|
|
|
|
|
|
|
|
define('REPORT_EXCEPTION_CONDITION_EVERYTHING', 0);
|
|
|
|
define('REPORT_EXCEPTION_CONDITION_GE', 1);
|
|
|
|
define('REPORT_EXCEPTION_CONDITION_LE', 5);
|
|
|
|
define('REPORT_EXCEPTION_CONDITION_L', 2);
|
|
|
|
define('REPORT_EXCEPTION_CONDITION_G', 6);
|
|
|
|
define('REPORT_EXCEPTION_CONDITION_E', 7);
|
|
|
|
define('REPORT_EXCEPTION_CONDITION_NE', 8);
|
|
|
|
define('REPORT_EXCEPTION_CONDITION_OK', 3);
|
|
|
|
define('REPORT_EXCEPTION_CONDITION_NOT_OK', 4);
|
|
|
|
|
|
|
|
define('REPORT_ITEM_ORDER_BY_AGENT_NAME', 3);
|
|
|
|
define('REPORT_ITEM_ORDER_BY_ASCENDING', 2);
|
|
|
|
define('REPORT_ITEM_ORDER_BY_DESCENDING', 1);
|
|
|
|
define('REPORT_ITEM_ORDER_BY_UNSORT', 0);
|
|
|
|
|
|
|
|
define('REPORT_OLD_TYPE_SIMPLE_GRAPH', 1);
|
|
|
|
define('REPORT_OLD_TYPE_CUSTOM_GRAPH', 2);
|
|
|
|
define('REPORT_OLD_TYPE_SLA', 3);
|
|
|
|
define('REPORT_OLD_TYPE_MONITOR_REPORT', 6);
|
|
|
|
define('REPORT_OLD_TYPE_AVG_VALUE', 7);
|
|
|
|
define('REPORT_OLD_TYPE_MAX_VALUE', 8);
|
|
|
|
define('REPORT_OLD_TYPE_MIN_VALUE', 9);
|
|
|
|
define('REPORT_OLD_TYPE_SUMATORY', 10);
|
|
|
|
|
|
|
|
define('REPORT_GENERAL_NOT_GROUP_BY_AGENT', 0);
|
|
|
|
define('REPORT_GENERAL_GROUP_BY_AGENT', 1);
|
|
|
|
|
|
|
|
define('REPORTING_CUSTOM_GRAPH_LEGEND_EACH_MODULE_VERTICAL_SIZE', 15);
|
2015-03-25 16:44:39 +01:00
|
|
|
|
2013-07-25 13:50:55 +02:00
|
|
|
/* POLICIES */
|
|
|
|
|
2015-06-11 20:45:40 +02:00
|
|
|
define("POLICY_UPDATED", 0);
|
|
|
|
define("POLICY_PENDING_DATABASE", 1);
|
|
|
|
define("POLICY_PENDING_ALL", 2);
|
2013-07-25 13:50:55 +02:00
|
|
|
|
2015-06-11 20:45:40 +02:00
|
|
|
define("STATUS_IN_QUEUE_OUT", 0);
|
|
|
|
define("STATUS_IN_QUEUE_IN", 1);
|
|
|
|
define("STATUS_IN_QUEUE_APPLYING", 2);
|
2013-07-25 13:50:55 +02:00
|
|
|
|
2015-06-11 20:45:40 +02:00
|
|
|
define("MODULE_UNLINKED", 0);
|
|
|
|
define("MODULE_LINKED", 1);
|
|
|
|
define("MODULE_PENDING_UNLINK", 10);
|
|
|
|
define("MODULE_PENDING_LINK", 11);
|
2013-07-25 13:50:55 +02:00
|
|
|
|
2013-08-27 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
godmode/agentes/module_manager_editor.php,
godmode/agentes/module_manager_editor_common.php,
godmode/agentes/configurar_agente.php,
godmode/massive/massive_edit_modules.php,
godmode/modules/manage_network_components_form_common.php,
godmode/modules/manage_network_components.php,
include/functions_events.php, include/functions.php,
include/javascript/pandora_modules.js,
include/functions_network_components.php,
include/functions_modules.php, include/constants.php, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: first version of
disabled unknown events for modules, now it is implemented in
modules, massive operations and components, but it is necesary in
local component, policy, api, cli, pandora server and recond task.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8701 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-08-27 15:05:30 +02:00
|
|
|
/* EVENTS */
|
2015-06-11 20:45:40 +02:00
|
|
|
define("EVENTS_GOING_UNKNOWN" , 'going_unknown');
|
|
|
|
define("EVENTS_UNKNOWN", 'unknown');
|
|
|
|
define("EVENTS_ALERT_FIRED", 'alert_fired');
|
|
|
|
define("EVENTS_ALERT_RECOVERED", 'alert_recovered');
|
|
|
|
define("EVENTS_ALERT_CEASED", 'alert_ceased');
|
|
|
|
define("EVENTS_ALERT_MANUAL_VALIDATION", 'alert_manual_validation');
|
|
|
|
define("EVENTS_RECON_HOST_DETECTED", 'recon_host_detected');
|
|
|
|
define("EVENTS_SYSTEM", 'system');
|
|
|
|
define("EVENTS_ERROR", 'error');
|
|
|
|
define("EVENTS_NEW_AGENT", 'new_agent');
|
|
|
|
define("EVENTS_GOING_UP_WARNING", 'going_up_warning');
|
|
|
|
define("EVENTS_GOING_UP_CRITICAL", 'going_up_critical');
|
|
|
|
define("EVENTS_GOING_DOWN_WARNING", 'going_down_warning');
|
|
|
|
define("EVENTS_GOING_DOWN_NORMAL", 'going_down_normal');
|
|
|
|
define("EVENTS_GOING_DOWN_CRITICAL", 'going_down_critical');
|
|
|
|
define("EVENTS_GOING_UP_NORMAL", 'going_up_normal');
|
|
|
|
define("EVENTS_CONFIGURATION_CHANGE", 'configuration_change');
|
2014-05-27 16:31:53 +02:00
|
|
|
|
|
|
|
/* CUSTOM GRAPHS */
|
2015-06-11 20:45:40 +02:00
|
|
|
define("CUSTOM_GRAPH_AREA", 0);
|
|
|
|
define("CUSTOM_GRAPH_STACKED_AREA", 1);
|
|
|
|
define("CUSTOM_GRAPH_LINE", 2);
|
|
|
|
define("CUSTOM_GRAPH_STACKED_LINE", 3);
|
2015-11-04 17:42:45 +01:00
|
|
|
define("CUSTOM_GRAPH_BULLET_CHART", 4);
|
|
|
|
define("CUSTOM_GRAPH_GAUGE", 5);
|
|
|
|
define("CUSTOM_GRAPH_HBARS", 6);
|
|
|
|
define("CUSTOM_GRAPH_VBARS", 7);
|
|
|
|
define("CUSTOM_GRAPH_PIE", 8);
|
2014-09-10 16:11:36 +02:00
|
|
|
|
|
|
|
/* COLLECTIONS */
|
2015-06-11 20:45:40 +02:00
|
|
|
define("COLLECTION_PENDING_APPLY", 0);
|
|
|
|
define("COLLECTION_CORRECT", 1);
|
|
|
|
define("COLLECTION_ERROR_LOST_DIRECTORY", 2);
|
|
|
|
define("COLLECTION_UNSAVED", 3);
|
2014-10-10 14:42:50 +02:00
|
|
|
|
|
|
|
/* PAGINATION */
|
2015-06-11 20:45:40 +02:00
|
|
|
define("PAGINATION_BLOCKS_LIMIT", 15);
|
|
|
|
|
|
|
|
/* CHARTS */
|
|
|
|
define("CHART_DEFAULT_WIDTH", 150);
|
|
|
|
define("CHART_DEFAULT_HEIGHT", 110);
|
2015-08-20 17:55:10 +02:00
|
|
|
|
|
|
|
/* Statwin */
|
|
|
|
define("STATWIN_DEFAULT_CHART_WIDTH", 555);
|
|
|
|
define("STATWIN_DEFAULT_CHART_HEIGHT", 245);
|
2013-11-06 11:32:41 +01:00
|
|
|
?>
|