diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index b6bf5e91e9..224f04419c 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2012-03-21 Sergio Martin + + * include/config_process.php + include/functions.php + include/constants.php: Add a new include file + only for constants + 2012-03-20 Sergio Martin * include/functions.php: Recoded the human_time_description_raw diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index eb6f7ae1e6..b914be3238 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -69,6 +69,7 @@ if (!isset($config['dbtype'])) { $config['dbtype'] = 'mysql'; } +require_once ($ownDir . 'constants.php'); require_once ($ownDir . 'functions_db.php'); require_once ($ownDir . 'functions.php'); diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php new file mode 100644 index 0000000000..cafe2bc2a3 --- /dev/null +++ b/pandora_console/include/constants.php @@ -0,0 +1,63 @@ + diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index db3c441e35..e13859fb2b 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -18,9 +18,6 @@ * @subpackage Generic_Functions */ -/* Enterprise hook constant */ -define ('ENTERPRISE_NOT_HOOK', -1); - /** * Include the html and ui functions. */ @@ -28,33 +25,6 @@ require_once ('functions_html.php'); require_once ('functions_ui.php'); require_once('functions_io.php'); -/* Events state constants */ -define ('EVENT_NEW', 0); -define ('EVENT_VALIDATE', 1); -define ('EVENT_PROCESS', 2); - -/* Agents disabled status */ -define ('AGENT_ENABLED',0); -define ('AGENT_DISABLED',1); - -/* Error report codes */ -define ('ERR_GENERIC',-10000); - -define ('ERR_EXIST',-20000); - -define ('ERR_INCOMPLETE', -30000); - -define ('ERR_DB', -40000); - -define ('ERR_FILE', -50000); - -define ('ERR_NOCHANGES', -60000); - -/* Visual console constants */ -define("MIN_WIDTH",300); -define("MIN_HEIGHT",120); -define("MIN_WIDTH_CAPTION",420); - function check_refererer() { global $config; @@ -1622,20 +1592,20 @@ function get_periods () { $periods = array (); $periods[0] = __('custom'); - $periods[300] = '5 '.__('minutes'); - $periods[1800] = '30 '.__('minutes'); - $periods[3600] = __('1 hour'); - $periods[21600] = '6 '.__('hours'); - $periods[43200] = '12 '.__('hours'); - $periods[86400] = __('1 day'); - $periods[604800] = __('1 week'); - $periods[1296000] = __('15 days'); - $periods[2592000] = '1 '.__('month'); - $periods[7776000] = '3 '.__('months'); - $periods[15552000] = '6 '.__('months'); - $periods[31104000] = '1 '.__('year'); - $periods[62208000] = '2 '.__('years'); - $periods[93312000] = '3 '.__('years'); + $periods[SECONDS_5MINUTES] = '5 '.__('minutes'); + $periods[SECONDS_30MINUTES] = '30 '.__('minutes'); + $periods[SECONDS_1HOUR] = __('1 hour'); + $periods[SECONDS_6HOURS] = '6 '.__('hours'); + $periods[SECONDS_12HOURS] = '12 '.__('hours'); + $periods[SECONDS_1DAY] = __('1 day'); + $periods[SECONDS_1WEEK] = __('1 week'); + $periods[SECONDS_15DAYS] = __('15 days'); + $periods[SECONDS_1MONTH] = '1 '.__('month'); + $periods[SECONDS_3MONTHS] = '3 '.__('months'); + $periods[SECONDS_6MONTHS] = '6 '.__('months'); + $periods[SECONDS_1YEAR] = '1 '.__('year'); + $periods[SECONDS_2YEARS] = '2 '.__('years'); + $periods[SECONDS_3YEARS] = '3 '.__('years'); return $periods; }