-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathops_print_by_attendee.php
197 lines (170 loc) · 7.17 KB
/
ops_print_by_attendee.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
<?php require_once('access_and_open.php'); require_once('secure.php'); ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Op Session Assignments</title>
<style type="text/css">
@media print
{
table { page-break-after:auto }
tr { page-break-inside:avoid; page-break-after:auto }
td { page-break-inside:avoid; page-break-after:auto }
thead { display:table-header-group }
tfoot { display:table-footer-group }
}
</style>
</head>
<body>
<?php
include_once('mysql2i.class.php'); // migration step
require_once('ops_assign_common.php');
require_once('utilities.php');
// parse out arguments
parse_str($_SERVER["QUERY_STRING"], $args);
// first, see if there's a "?cy=" or "?start=" in the arguments
if (! array_key_exists("cy",$args) ) {
echo '<h1>'.$event_tools_event_name.' Op Session Roster</h1>';
echo '<a href="index.php">Back to main page</a><p/>';
echo '<form method="get" action="ops_print_by_attendee.php">
Cycle Name: <input name="cy"></textarea>
Date (blank or day-of-month, e.g. 25): <input name="date"></textarea>
<button type="submit">Start</button>
</form>
';
// display existing cycles & number of assignments)
echo '<h3>Existing cycles</h3><table><tr><th>Cycle Name</th><th>N Assigned</th></tr>';
global $opts, $event_tools_db_prefix, $event_tools_href_add_on;
mysql_connect($opts['hn'],$opts['un'],$opts['pw']);
@mysql_select_db($opts['db']) or die( "Unable to select database");
$query="
SELECT opsreq_group_cycle_name, SUM(status)
FROM ".$event_tools_db_prefix."eventtools_ops_group_session_assignments
WHERE status = 1
GROUP BY opsreq_group_cycle_name
ORDER BY opsreq_group_cycle_name
;
";
$result=mysql_query($query);
$num = mysql_numrows($result);
for ($i = 0; $i < $num; $i++) {
echo '<tr><td><a href="?cy='.mysql_result($result,$i,"opsreq_group_cycle_name").'">'.mysql_result($result,$i,"opsreq_group_cycle_name").'</a></td><td>'.mysql_result($result,$i,1).'</td></tr>';
}
echo '</table>';
return;
}
$cycle = $args["cy"];
$date = NULL;
if (array_key_exists("date", $args)) {
$date = $args["date"];
}
$where = "";
if ($date != NULL && $date != "") {
if (strlen($date) == 1) $date = '0'.$date;
$where = ' AND start_date LIKE "2___-__-'.substr($date,-2).'%" ';
}
// open db
global $opts, $event_tools_db_prefix, $event_tools_href_add_on, $cycle;
mysql_connect($opts['hn'],$opts['un'],$opts['pw']);
@mysql_select_db($opts['db']) or die( "Unable to select database");
$query="
SELECT *
FROM ".$event_tools_db_prefix."eventtools_ops_group_session_assignments
WHERE opsreq_group_cycle_name = '".$cycle."'
AND show_name != \"\" ".$where."
ORDER BY customers_lastname, customers_firstname, start_date, show_name
;
";
// echo "\n".$query."\n";
$result=mysql_query($query);
$num = mysql_numrows($result);
echo '<table border="1"><tr>';
// generate table headings from first, last date
$first_string = "2200-01-01 00:00:00";
$last_string = "1999-01-01 00:00:00";
// default is nothing before this month, specify argument if you want to see the past
if (!isset($start_date_limit) || $start_date_limit == NULL) {
$now = new DateTime();
// step back 1 year
$now = $now->modify('-1 year');
$start_date_limit = $now->format("Y-m")."-01 00:00:00";
//echo '['.$start_date_limit.']';
}
for ($j=0; $j<$num; $j++) {
if ((mysql_result($result,$j,"start_date") < $first_string) && (mysql_result($result,$j,"start_date") > $start_date_limit) ) {
$first_string = mysql_result($result,$j,"start_date");
}
if (mysql_result($result,$j,"start_date") > $last_string) $last_string = mysql_result($result,$j,"start_date");
}
//echo 'dates: '.$first_string.' '.$last_string.'<p>';
// following assumes that event doesn't cross end of year
$first_date = DateTime::createFromFormat('Y-m-d H:i:s', $first_string);
$last_date = DateTime::createFromFormat('Y-m-d H:i:s', $last_string);
$days = (intval($last_date->format('z'))-intval($first_date->format('z')));
//echo 'days: '.$days.'<p>';
if ($days < 0) {
echo "Some session dates are probably wrong, found ".$first_string." through ".$last_string."; is date parameter right?<p>";
}
if ($days > 10) {
$days = 10; // limit to width; more probably due to bad dates
echo "Some session dates are probably wrong, found ".$first_string." through ".$last_string."; is date parameter right?<p>";
}
$headings = array(); // like [Wed 03, Thu 04]
$colarray = array(); // like [2008-01-03, 2008-01-04]
$day = $first_date;
for ($j=0; $j<=$days; $j++) {
$headings[] = $day->format('D').'<br>'.$day->format('Y-m-d');
$colarray[] = $day->format('Y-m-d');
$day->add(new DateInterval('P1D'));
}
echo '<tr><th></th><th></th>';
foreach ($colarray as $x) { echo '<th>'.$x.'<br>Name</th><th>'.$x.'<br>Layout</th>'; }
echo '</tr>';
$title = mysql_result($result,0,"customers_firstname").' '.mysql_result($result,0,"customers_lastname");
$first = TRUE;
echo '<td>'.mysql_result($result,0,"customers_firstname").' '.mysql_result($result,0,"customers_lastname").' </td>';
echo '<td>'.mysql_result($result,0,"entry_city").', '.mysql_result($result,0,"entry_state").' </td>';
$colnum = 0;
for ($i=0; $i < $num; $i++) {
// if doesn't match, do a session break
if ($title != mysql_result($result,$i,"customers_firstname").' '.mysql_result($result,$i,"customers_lastname")) {
$title = mysql_result($result,$i,"customers_firstname").' '.mysql_result($result,$i,"customers_lastname");
// first end old session
while ( $colnum < count($colarray) ) {
echo '<td></td><td></td>';
$colnum++;
}
echo '</tr>';
// finally, start layout
echo '<td>'.mysql_result($result,$i,"customers_firstname").' '.mysql_result($result,$i,"customers_lastname").' </td>';
echo '<td>'.mysql_result($result,$i,"entry_city").', '.mysql_result($result,$i,"entry_state").' </td>';
$colnum = 0;
}
// show if allocated
if (1 == mysql_result($result,$i,"status")) {
// skip to here
while ($colarray[$colnum] != substr(mysql_result($result,$i,"start_date"), 0, 10) && $colnum < 5) {
echo '<td></td><td></td>';
$colnum++;
}
echo '<td class="attendee">';
echo mysql_result($result,$i,"layout_owner_lastname1");
if (mysql_result($result,$i,"layout_owner_lastname2") !="") {
echo " / ".mysql_result($result,$i,"layout_owner_lastname2");
}
echo '</td>';
echo '<td class="attendee">';
echo mysql_result($result,$i,"layout_name1");
if (mysql_result($result,$i,"layout_name2") !="") {
echo " / ".mysql_result($result,$i,"layout_name2");
}
echo '</td>';
$colnum++;
}
}
echo '</tr></table>';
return;
?>
</body>
</html>