annotate pages/attendees.inc.php @ 571:ce11ea112a65

Change the header blurb a bit.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 23 May 2014 17:18:33 +0300
parents ed2247111fdd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 <?
136
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 103
diff changeset
2 //
571
ce11ea112a65 Change the header blurb a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 565
diff changeset
3 // FAPWeb - Simple Web-based Demoparty Management System
136
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 103
diff changeset
4 // Attendee list page
565
ed2247111fdd Bump copyright years.
Matti Hamalainen <ccr@tnsp.org>
parents: 514
diff changeset
5 // (C) Copyright 2012-2014 Tecnic Software productions (TNSP)
136
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 103
diff changeset
6 //
103
c6b9041078ec Add hard limit option for attendees, and add feature of using "0" to disable
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
7 if (stCheckRegistrationAvailable())
0
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 {
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 ?>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 <div class="reglink">
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 To register, use <a href="register">this form</a>.
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 </div>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 <?
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14 }
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15
103
c6b9041078ec Add hard limit option for attendees, and add feature of using "0" to disable
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
16 echo "<p>Total of <b>".$numAttendees.
c6b9041078ec Add hard limit option for attendees, and add feature of using "0" to disable
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
17 "</b> people registered to attend";
0
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18
103
c6b9041078ec Add hard limit option for attendees, and add feature of using "0" to disable
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
19 if ($maxAttendeesHard > 0)
c6b9041078ec Add hard limit option for attendees, and add feature of using "0" to disable
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
20 echo " (<b>".$maxAttendeesHard."</b> max)";
c6b9041078ec Add hard limit option for attendees, and add feature of using "0" to disable
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
21
c6b9041078ec Add hard limit option for attendees, and add feature of using "0" to disable
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
22 echo ".</p>\n";
0
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24 ?>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25 <table class="attendees">
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26 <tr>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
27 <th class="name">Name</th>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
28 <th class="groups">Group(s)</th>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
29 <th class="regtime">Registered</th>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
30 <th class="oneliner">Oneliner</th>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
31 </tr>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
32 <?
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
33 if (($res = stExecSQL("SELECT * FROM attendees ORDER BY regtime DESC")) !== FALSE)
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34 {
137
57de66a604c5 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 136
diff changeset
35 $index = $numAttendees;
57de66a604c5 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 136
diff changeset
36 $row = 0;
0
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
37 foreach ($res as $item)
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
38 {
213
682a926fd6fb Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 205
diff changeset
39 // Check hard limit first
196
ef26d16b836e Fix maximum attendee / overbooking limit handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 137
diff changeset
40 if ($maxAttendeesHard > 0)
ef26d16b836e Fix maximum attendee / overbooking limit handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 137
diff changeset
41 $over = $index > $maxAttendeesHard;
ef26d16b836e Fix maximum attendee / overbooking limit handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 137
diff changeset
42 else
213
682a926fd6fb Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 205
diff changeset
43 // Then check soft limit
196
ef26d16b836e Fix maximum attendee / overbooking limit handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 137
diff changeset
44 if ($maxAttendeesSoft > 0)
ef26d16b836e Fix maximum attendee / overbooking limit handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 137
diff changeset
45 $over = $index > $maxAttendeesSoft;
ef26d16b836e Fix maximum attendee / overbooking limit handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 137
diff changeset
46
205
77d33161f8be More work on admin interface.
Matti Hamalainen <ccr@tnsp.org>
parents: 196
diff changeset
47 stPrintAttendee($item, $row++, TRUE, FALSE, FALSE, $over ? " overbooked" : "");
0
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
48 $index--;
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
49 }
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
50 }
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
51 ?>
8019b357cc03 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
52 </table>