-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeperiods.php
executable file
·165 lines (152 loc) · 4.84 KB
/
timeperiods.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?php
/*
Lilac - A Nagios Configuration Tool
Copyright (C) 2007 Taylor Dondich
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; either version 2
of the License, or (at your option) any later version.
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.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*
Time Period Manager
*/
include_once('includes/config.inc');
// Action Handlers
if(isset($_GET['request'])) {
if($_GET['request'] == "delete") {
// !!!!!!!!!!!!!! This is where we do dependency error checking
$lilac->delete_period($_GET['timeperiod_id']);
$success = "Period Deleted";
unset($_GET['timeperiod_id']);
}
}
if(isset($_POST['request'])) {
// Load Up The Session Data
if($_POST['request'] == 'add_period') {
// Check for valid field entry
if(trim($_POST['timeperiod_manage']['timeperiod_name']) == '' || trim($_POST['timeperiod_manage']['alias']) == '') {
$error = "Fields must be filled in.";
}
else {
// Check for pre-existing command with same name
if($lilac->period_exists($_POST['timeperiod_manage']['timeperiod_name'])) {
$error = "A time period with that name already exists!";
}
else {
// All is well for error checking, add the command into the db.
$timeperiod = new NagiosTimeperiod();
$timeperiod->setName($_POST['timeperiod_manage']['timeperiod_name']);
$timeperiod->setAlias($_POST['timeperiod_manage']['alias']);
$timeperiod->save();
// Remove session data
unset($_GET['timeperiod_add']);
$success = "Time period added.";
}
}
}
}
if(isset($_GET['timeperiod_id'])) {
$timeperiod = NagiosTimeperiodPeer::retrieveByPK($_GET['timeperiod_id']);
}
// Get list of commands
$lilac->return_period_list($period_list);
$numOfPeriods = count($period_list);
print_header("Time Period Editor");
if(isset($_GET['timeperiod_id']) || isset($_GET['timeperiod_add'])) {
if(isset($_GET['timeperiod_id'])) {
print_window_header("Modify A Time Period", "100%");
}
else {
print_window_header("Add A Time Period", "100%");
}
?>
<form name="timeperiod_form" method="post" action="timeperiods.php?timeperiod_add=1">
<?php
if(isset($timeperiod)) {
?>
<input type="hidden" name="request" value="modify_period" />
<input type="hidden" name="timeperiod_manage[timeperiod_id]" value="<?php echo $timeperiod->getId();?>">
<?php
}
else {
?>
<input type="hidden" name="request" value="add_period" />
<?php
}
?>
<b>Time Period Name:</b><br />
<input type="text" name="timeperiod_manage[timeperiod_name]" value="<?php echo isset($timeperiod) ? $timeperiod->getName() : '';?>"><br />
<?php echo $lilac->element_desc("timeperiod_name", "nagios_timeperiods_desc"); ?><br />
<br />
<b>Description:</b><br />
<input type="text" size="80" name="timeperiod_manage[alias]" value="<?php echo isset($timeperiod) ? $timeperiod->getAlias() : '';?>"><br />
<?php echo $lilac->element_desc("alias", "nagios_timeperiods_desc"); ?><br />
<br />
<?php
if(isset($_GET['timeperiod_id'])) {
?>
<a href="timeperiods.php?timeperiod_id=<?php echo $_GET['timeperiod_id'];?>&request=delete">Delete</a> <input type="submit" value="Modify Period" /> <a href="timeperiods.php">Cancel</a>
<?php
}
else {
?>
<input type="submit" value="Create Period" /> <a href="timeperiods.php">Cancel</a>
<?php
}
?>
<br /><br />
<?php
print_window_footer();
}
else {
print_window_header("Time Period Listings", "100%");
?>
<a class="sublink" href="timeperiods.php?timeperiod_add=1">Add A New Time Period</a><br />
<?php
if($numOfPeriods) {
?>
<br />
<table class="listing">
<tr class="altTop">
<td>Period Name</td>
<td>Period Description</td>
</tr>
<?php
for($counter = 0; $counter < $numOfPeriods; $counter++) {
if($counter % 2) {
?>
<tr class="altRow1">
<?php
}
else {
?>
<tr class="altRow2">
<?php
}
?>
<td height="20" class="altLeft"> <a href="timeperiod.php?timeperiod_id=<?php echo $period_list[$counter]->getId();?>"><?php echo $period_list[$counter]->getName();?></a></td>
<td height="20" class="altRight"><?php echo $period_list[$counter]->getAlias();?></td>
</tr>
<?php
}
?>
</table>
<?php
}
else {
?>
<br />
<div class="statusmsg">No Periods Exist</div>
<?php
}
print_window_footer();
}
print_footer();
?>