forked from opendcim/openDCIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Escalations.class.php
119 lines (91 loc) · 2.93 KB
/
Escalations.class.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
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
<?php
/*
openDCIM
This is the main class library for the openDCIM application, which
is a PHP/Web based data center infrastructure management system.
This application was originally written by Scott A. Milliken while
employed at Vanderbilt University in Nashville, TN, as the
Data Center Manager, and released under the GNU GPL.
Copyright (C) 2011 Scott A. Milliken
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, version 3.
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.
For further details on the license, see http://www.gnu.org/licenses
*/
class Escalations {
var $EscalationID;
var $Details;
function MakeSafe(){
$this->EscalationID=intval($this->EscalationID);
$this->Details=sanitize($this->Details);
}
function MakeDisplay(){
$this->Details=stripslashes($this->Details);
}
function query($sql){
global $dbh;
return $dbh->query($sql);
}
function exec($sql){
global $dbh;
return $dbh->exec($sql);
}
function CreateEscalation(){
global $dbh;
$this->MakeSafe();
$sql="INSERT INTO fac_Escalations SET Details=\"$this->Details\";";
if($this->exec($sql)){
$this->EscalationID=$dbh->lastInsertId();
$this->MakeDisplay();
(class_exists('LogActions'))?LogActions::LogThis($this):'';
return $this->EscalationID;
}else{
return false;
}
}
function DeleteEscalation(){
$this->MakeSafe();
$sql="DELETE FROM fac_Escalations WHERE EscalationID=$this->EscalationID;";
(class_exists('LogActions'))?LogActions::LogThis($this):'';
return $this->exec($sql);
}
function GetEscalation(){
$this->MakeSafe();
$sql="SELECT * FROM fac_Escalations WHERE EscalationID=$this->EscalationID;";
if($row=$this->query($sql)->fetch()){
$this->EscalationID=$row["EscalationID"];
$this->Details=$row["Details"];
$this->MakeDisplay();
return true;
}else{
return false;
}
}
function GetEscalationList() {
$sql="SELECT * FROM fac_Escalations ORDER BY Details ASC;";
$escList=array();
foreach($this->query($sql) as $row){
$escList[$row["EscalationID"]]=new Escalations();
$escList[$row["EscalationID"]]->EscalationID=$row["EscalationID"];
$escList[$row["EscalationID"]]->Details=$row["Details"];
$escList[$row["EscalationID"]]->MakeDisplay();
}
return $escList;
}
function UpdateEscalation(){
$this->MakeSafe();
$oldesc=new Escalations();
$oldesc->EscalationID=$this->EscalationID;
$oldesc->GetEscalation();
$sql="UPDATE fac_Escalations SET Details=\"$this->Details\" WHERE
EscalationID=$this->EscalationID;";
$this->MakeDisplay();
(class_exists('LogActions'))?LogActions::LogThis($this,$oldesc):'';
return $this->query($sql);
}
}
?>