-
Notifications
You must be signed in to change notification settings - Fork 0
/
partner.php
399 lines (373 loc) · 11.8 KB
/
partner.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<?php
/*
Partner Profile
Western Washington University
Service Learning Center Database
*/
include('database.php');
include_once('CAS.php');
phpCAS::client(CAS_VERSION_2_0, 'websso.wwu.edu', 443, '/cas');
phpCAS::setNoCasServerValidation();
if (!phpCAS::isAuthenticated()) phpCAS::forceAuthentication();
if (isset($_REQUEST['logout'])) phpCAS::logout();
if (phpCAS::isAuthenticated()) $casuser = phpCAS::getUser();
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="description">
<meta content="" name="author">
<link href="" rel="shortcut icon">
<title>
Partner Profile
</title>
<link href="bootstrap.css" rel="stylesheet">
</head>
<body>
<img border="0" src="banner.jpg" width="100%" height="150">
<link href="bootstrap.css" rel="stylesheet">
<ul class="nav nav-pills">
<li><a href="main.php">Home</a></li>
<li><a href="info.php">Info</a></li>
<li><a href="add.php">Add</a></li>
<li><a href="report.php">Report</a></li>
<li><a href="course.php">Course</a></li>
<li><a href="section.php">Section</a></li>
<li><a href="faculty.php">Faculty</a></li>
<li class="active"><a href="partner.php">Partner</a></li>
<li><a href="project.php">Project</a></li>
<?php
if (phpCAS::isAuthenticated())
{
echo '<li><a>You are logged in as <font color="red">' . $casuser . '</font></li></a>';
echo '<li><a href="?logout">(Logout)</li></a>';
}
else
echo '<li><a href="login.php">Login</li></a>';
?>
<li>
<form action="keyword.php" method=POST>
<input type=text align="center" style="width: 25em" name="keyword" placeholder="Search...">
<input type="submit" name="ksearch" value="Search">
<br>
<font color="white">
<input type="checkbox" name="searchTables[]" value="section" checked>Section
<input type="checkbox" name="searchTables[]" value="faculty" checked>Faculty
<input type="checkbox" name="searchTables[]" value="project" checked>Projects
<input type="checkbox" name="searchTables[]" value="partner" checked>Partners
<input type="checkbox" name="includeComments" value="Yes" checked>Include Comments
</font>
</form>
</li>
</ul>
<?php
//Connect to the SLC database
$database = connectSLC();
//Get the date and time
$time = time();
$format = "n/j/y g:ia";
$dateFormat = new DateTime(date($format, $time));
$date = $dateFormat->format($format);
//Determine which actions to take on this page
$edit= $_POST["edit"];
$confirm= $_POST["confirm"];
$cancel= $_POST["cancel"];
$delete= $_POST["delete"];
$addComment= $_POST["addComment"];
$delComment= $_POST["delComment"];
//Get posted variables for the edit page
$partnerName= $_POST['partnerName'];
$partnerContact= $_POST['partnerContact'];
$partnerDesc= $_POST['partnerDesc'];
if ($_POST["partnerTypeText"])
$partnerType = $_POST["partnerTypeText"];
else
$partnerType = $_POST["partnerType"];
//Remove the profile from the database if the Delete button is clicked on the edit page
if($delete)
{
$result = $database->fullQuery("DELETE FROM partner
WHERE partnerID = '%s';",$_POST['partnerID']);
unset($_POST['partnerID']);
}
//Get posted ID
$partnerID = $_POST['partnerID'];
//Update the profile when the Confirm button is clicked on the edit page
if ($confirm)
{
$partnerLastMod = $date;
if ($partnerType != "NULL")
$partnerType = "'" . $partnerType . "'";
$result = $database->fullQuery("UPDATE partner
SET partnerName = '{$partnerName}',
partnerContact = '{$partnerContact}',
partnerType = {$partnerType},
partnerDesc = '{$partnerDesc}',
partnerLastMod = '{$date}',
partnerCreator = '{$casuser}'
WHERE partnerID ='{$partnerID}';");
}
//Add new comments
if ($addComment)
{
$newComment= $_POST["newComment"];
$return = $database->fullQuery("INSERT INTO partnerComments
(partnerCom, partnerComCreator, partnerComLastMod, comFK_partnerID)
VALUES ('{$newComment}', '{$casuser}', '{$date}', {$partnerID});");
}
//Delete old comments
if ($delComment)
{
$return = $database->fullQuery("DELETE FROM partnerComments
WHERE partnerComID = {$delComment};");
}
?>
<h4>Partner Profile</h4>
<?
//--------------------------------------------------
//EDIT PAGE
//--------------------------------------------------
if ($edit)
{
?>
<form action=partner.php method=post>
<input type="submit" name="confirm" value="Confirm">
<input type="submit" name="cancel" value="Cancel"></td>
<table class="table table-striped" style="width:30%">
<thead>
<tr>
<th>Name</th>
<th>Contact</th>
<th>Type</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input type="text" style="width:300px" name="partnerName" size="10"
placeholder="<?=$partnerName;?>" value="<?=$partnerName;?>">
</td>
<td>
<input type="text" style="width:300px" name="partnerContact" size="10"
placeholder="<?=$partnerContact;?>" value="<?=$partnerContact;?>">
</td>
<td>
<select name="partnerType">
<option value="NULL">[None]</option>
<?
$result = $database->fullQuery("SELECT DISTINCT partnerType from partner
ORDER BY partnerType;");
while ($row = mysqli_fetch_array($result))
{
$type = $row["partnerType"];
if ($type == $partnerType)
echo "<option value=\"{$type}\" selected>{$type}</option>";
else if ($type != "")
echo "<option value=\"{$type}\">{$type}</option>";
}
?>
</select>
<input type="text" name="partnerTypeText" placeholder="Add New">
</td>
<input type="hidden" name="partnerID" value="<?=$partnerID;?>">
</tr>
</tbody>
</table>
<b>Description</b><br>
<input type="text" name="partnerDesc" value="<?=$partnerDesc;?>" placeholder="<?=$partnerDesc;?>"style="width:1000px"><br>
<br>
<input type="submit" name="delete" value="Delete">
</form>
<?
}
//--------------------------------------------------
//PROFILE PAGE
//--------------------------------------------------
else if ($partnerID)
{
?>
<form action="partner.php" method="POST">
<input type="hidden" name="partnerID" value="">
<input type="submit" name="profile" value="View All Partners">
</form>
<hr style='background:#000000; border:0; height:3px' />
<h4>Details</h4>
Partner ID = <?=$partnerID;?>
<table class="table table-striped" style="width:50%">
<thead>
<tr>
<th>Last Modfied</th>
<th>Modified By</th>
<th>Name</th>
<th>Contact</th>
<th>Type</th>
<th>Edit</th>
</tr>
</thead>
<tbody>
<?
$result = $database->fullQuery("SELECT * FROM partner
WHERE partnerID = {$partnerID};");
$row = mysqli_fetch_array($result);
?>
<tr>
<td><?=$row["partnerLastMod"]?></td>
<td><?=$row["partnerCreator"]?></td>
<td><?=$row["partnerName"]?></td>
<?
if ((!$row["partnerContact"]) || ($row["partnerContact"] == ""))
echo '<td>[None]</td>';
else
echo '<td>' . $row["partnerContact"] . '</td>';
if ($row["partnerType"])
echo '<td>' . $row["partnerType"] . '</td>';
else
echo '<td>[None]</td>';
?>
<form action="partner.php" method="post">
<td>
<input type="hidden" name="partnerID" value="<?=$row["partnerID"];?>">
<input type="hidden" name="partnerName" value="<?=$row["partnerName"];?>">
<input type="hidden" name="partnerContact" value="<?=$row["partnerContact"];?>">
<input type="hidden" name="partnerType" value="<?=$row["partnerType"];?>">
<input type="hidden" name="partnerDesc" value="<?=$row["partnerDesc"];?>">
<input type="submit" name="edit" value="Edit">
</td>
</form>
</tr>
</tbody>
</table>
<br>
<b>Description</b>
<br>
<?
$partnerDesc = $row["partnerDesc"];
if ((!$partnerDesc) || ($partnerDesc == ""))
echo '[None]';
else
echo $partnerDesc;
?>
<br>
<br>
<hr style='background:#000000; border:0; height:3px' />
<h4>Comments</h4>
<table class="table table-striped" style="width:50%">
<thead>
<tr>
<th>Comment</th>
<th>Creator</th>
<th>Time</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<?
$result = $database->fullQuery("SELECT * FROM partnerComments
WHERE comFK_partnerID = {$partnerID};");
while ($row = mysqli_fetch_array($result))
{
echo '<tr>';
echo '<td>' . $row['partnerCom'] . '</td>';
echo '<td>' . $row['partnerComCreator'] . '</td>';
echo '<td>' . $row['partnerComLastMod'] . '</td>';
echo '<form action="partner.php" method=post>';
echo '<input type="hidden" name="partnerID" value="'. $partnerID .'">';
echo '<input type="hidden" name="delComment" value="'. $row['partnerComID'] .'">';
echo '<td><input type="submit" name="delCommentButton" value="Delete"></td>';
echo '</form>';
}
?>
</tbody>
</table>
<form action="partner.php" method=post>
<td><input type="hidden" name="partnerID" value="<?=$partnerID;?>"></td>
<td><input type="text" style="width:950px" name="newComment" placeholder="New Comment" value=""></td>
<br>
<td><input type="submit" name="addComment" value="Add"></td>
</form>
<hr style='background:#000000; border:0; height:3px' />
<h4>Affiliated Projects</h4>
<table class="table table-striped" style="width:30%">
<thead>
<th>Name</th>
<th>Partner</th>
<th>Type</th>
<th>Status</th>
</thead>
<tbody>
<?
$result = $database->fullQuery("SELECT * FROM project
LEFT JOIN partner ON project.projectFK_partnerID = partner.partnerID
WHERE partnerID = {$partnerID}
ORDER BY projectType");
while ($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row["projectName"] . "</td>";
echo "<td>" . $row["partnerName"] . "</td>";
echo "<td>" . $row["projectType"] . "</td>";
echo "<td>" . $row["projectStatus"] . "</td>";
echo "<td>
<form action='project.php' method=post>
<input type='hidden' name='projectID' value={$row["projectID"]}>
<input type='submit' value='Details'>
</form></td>";
echo "</tr>";
}
?>
</tbody>
</table>
<?
}
//--------------------------------------------------
//LIST PAGE
//--------------------------------------------------
//Otherwise display the profiles
else
{
?>
<form action='export.php' method='post'>
<button type='submit' name='export' value='SELECT * FROM partner ORDER BY partnerName;'>Export All</button>
<input type='hidden' name='outname' value='partner'>
</form>
<table class="table table-striped" style="width:50%">
<thead>
<tr>
<th>Name</th>
<th>Contact</th>
<th>Type</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<?
$result = $database ->fullQuery("SELECT * FROM partner
ORDER BY partnerName;");
while ($row = mysqli_fetch_array($result))
{
?>
<tr>
<td><?=$row["partnerName"];?></td>
<td><?=$row["partnerContact"];?></td>
<td><?=$row["partnerType"];?></td>
<form action="partner.php" method="post">
<td>
<input type="hidden" name="partnerID" value="<?=$row["partnerID"];?>">
<input type="submit" name="profile" value="Details">
</td>
</form>
</tr>
<?
}
?>
</tbody>
</table>
<?
}
if ($database)
$database->close();
?>
</body>
</html>