forked from opendcim/openDCIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
escalations.php
100 lines (91 loc) · 2.9 KB
/
escalations.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
<?php
require_once( "db.inc.php" );
require_once( "facilities.inc.php" );
$subheader=__("Data Center Escalation Rules");
if(!$user->ContactAdmin){
// No soup for you.
header('Location: '.redirect());
exit;
}
$esc=new Escalations();
$status="";
if(isset($_REQUEST['escalationid'])){
$esc->EscalationID=$_REQUEST['escalationid'];
if(isset($_POST['action'])){
if($_POST['details']!=null && $_POST['details']!=''){
switch($_POST['action']){
case 'Create':
$esc->Details=$_POST['details'];
$esc->CreateEscalation();
break;
case 'Update':
$esc->Details=$_POST['details'];
$status=__("Updated");
$esc->UpdateEscalation();
break;
case 'Delete':
$esc->DeleteEscalation();
header('Location: '.redirect("escalations.php"));
exit;
}
}
}
$esc->GetEscalation();
}
$escList=$esc->GetEscalationList();
?>
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>openDCIM Data Center Inventory</title>
<link rel="stylesheet" href="css/inventory.php" type="text/css">
<link rel="stylesheet" href="css/jquery-ui.css" type="text/css">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/ie.css" type="text/css">
<![endif]-->
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery-ui.min.js"></script>
</head>
<body>
<?php include( 'header.inc.php' ); ?>
<div class="page">
<?php
include( "sidebar.inc.php" );
echo '<div class="main">
<h3>',$status,'</h3>
<div class="center"><div>
<form action="',$_SERVER["PHP_SELF"],'" method="POST">
<div class="table">
<div>
<div><label for="escalationid">',__("Escalation Rule"),'</label></div>
<div><input type="hidden" name="action" value="query"><select name="escalationid" id="escalationid" onChange="form.submit()">
<option value=0>',__("New Escalation Rule"),'</option>';
foreach( $escList as $escRow ) {
if($esc->EscalationID == $escRow->EscalationID){$selected=" selected";}else{$selected="";}
print "<option value=\"$escRow->EscalationID\"$selected>$escRow->Details</option>\n";
}
echo ' </select></div>
</div>
<div>
<div><label for="details">',__("Details"),'</label></div>
<div><input type="text" name="details" id="details" size="80" value="',$esc->Details,'"></div>
</div>
<div class="caption">';
if($esc->EscalationID >0){
echo ' <button type="submit" name="action" value="Update">',__("Update"),'</button>
<button type="submit" name="action" value="Delete">',__("Delete"),'</button>';
}else{
echo ' <button type="submit" name="action" value="Create">',__("Create"),'</button>';
}
?>
</div>
</div><!-- END div.table -->
</form>
</div></div>
<?php echo '<a href="index.php">[ ',__("Return to Main Menu"),' ]</a>'; ?>
</div><!-- END div.main -->
</div><!-- END div.page -->
</body>
</html>