[SLA] Added define to status (err, ok, downtimes, ignored, unknown and not init)
This commit is contained in:
parent
9a55ee7d2a
commit
95980456e9
|
@ -42,9 +42,18 @@ include_once($config['homedir'] . "/include/functions_os.php");
|
||||||
/////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////
|
||||||
// CONSTANTS DEFINITIONS //
|
// CONSTANTS DEFINITIONS //
|
||||||
/////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////
|
||||||
|
// Priority modes
|
||||||
define ('REPORT_PRIORITY_MODE_OK', 1);
|
define ('REPORT_PRIORITY_MODE_OK', 1);
|
||||||
define ('REPORT_PRIORITY_MODE_UNKNOWN', 2);
|
define ('REPORT_PRIORITY_MODE_UNKNOWN', 2);
|
||||||
|
|
||||||
|
// Status
|
||||||
|
define ('REPORT_STATUS_ERR', 0);
|
||||||
|
define ('REPORT_STATUS_OK', 1);
|
||||||
|
define ('REPORT_STATUS_UNKNOWN', 2);
|
||||||
|
define ('REPORT_STATUS_NOT_INIT', 3);
|
||||||
|
define ('REPORT_STATUS_DOWNTIME', 4);
|
||||||
|
define ('REPORT_STATUS_IGNORED', 5);
|
||||||
|
|
||||||
function reporting_user_can_see_report($id_report, $id_user = null) {
|
function reporting_user_can_see_report($id_report, $id_user = null) {
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue