2007-03-08 21:33:22 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
* SFIAB Website : http :// www . sfiab . ca
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2007 James Grant < james @ lightbox . org >
*
* 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 , version 2.
*
* 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 ; see the file COPYING . If not , write to
* the Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
2007-03-08 21:33:22 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require ( 'common.inc.php' );
2007-03-08 21:33:22 +00:00
2025-01-29 03:30:48 +00:00
require ( './config/signaturepage_or_permissionform.php' );
2007-03-08 21:33:22 +00:00
2025-01-29 03:30:48 +00:00
send_header ( 'Confirmed Participants' );
2024-12-17 01:34:35 -05:00
2025-01-29 03:30:48 +00:00
global $stats_totalstudents ;
// first, lets make sure someone isnt tryint to see something that they arent allowed to!
2024-11-25 18:06:33 -05:00
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( " SELECT (NOW()>' " . $config [ 'dates' ][ 'postparticipants' ] . " ') AS test " );
$q -> execute ();
$r = $q -> fetch ( PDO :: FETCH_OBJ );
if ( $r -> test != 1 ) {
list ( $d , $t ) = explode ( ' ' , $config [ 'dates' ][ 'postparticipants' ]);
echo i18n ( " Confirmed participants (that $signatureformpermissionform have been received for) will be posted here on %1 at %2. Please do not contact the fair to inquire about receipt of your $signatureformpermissionform until after this date (and only if you are not listed here after this date). " , array ( $d , $t ));
} else {
$q = $pdo -> prepare ( " SELECT registrations.id AS reg_id,
2007-03-08 21:33:22 +00:00
registrations . status ,
registrations . email ,
projects . title ,
projects . projectnumber ,
projects . projectcategories_id ,
projects . projectdivisions_id ,
projectcategories . category ,
projectdivisions . division
FROM
registrations
LEFT JOIN projects on projects . registrations_id = registrations . id
LEFT JOIN projectcategories ON projectcategories . id = projects . projectcategories_id
LEFT JOIN projectdivisions ON projectdivisions . id = projects . projectdivisions_id
WHERE
1
2025-01-29 03:30:48 +00:00
AND registrations . year = '" . $config[' FAIRYEAR '] . "'
AND projectcategories . year = '" . $config[' FAIRYEAR '] . "'
AND projectdivisions . year = '" . $config[' FAIRYEAR '] . "'
2007-03-08 21:33:22 +00:00
AND ( status = 'complete' OR status = 'paymentpending' )
ORDER BY
projectcategories . id ,
projectdivisions . id ,
projects . projectnumber
" );
2025-01-29 03:30:48 +00:00
$q -> execute ();
2007-03-08 21:33:22 +00:00
2025-01-29 03:30:48 +00:00
// Check for errors after the query execution
$errorInfo = $pdo -> errorInfo ();
if ( $errorInfo [ 0 ] != '00000' ) {
// If there's an error (the SQLSTATE isn't '00000', which means no error)
echo 'Error: ' . $errorInfo [ 2 ]; // The third element contains the error message
}
2007-03-08 21:54:30 +00:00
2025-01-29 03:30:48 +00:00
$lastcat = 'something_that_does_not_exist' ;
$lastdiv = 'something_that_does_not_exist' ;
echo i18n ( " The following is a list of all confirmed participants that the $signatureformpermissionform has been received for. If you think you registered but you are not on this list, you should contact the %1 immediately. " , array ( $config [ 'fairname' ])) . '<br />' ;
if ( $config [ 'regfee' ] > 0 ) {
echo '<br />' ;
echo '<font color="red">*</font>' . i18n ( " indicates payment was not received with the $signatureformpermissionform . " );
echo '<br />' ;
echo '<br />' ;
}
echo '<table style="font-size: 0.9em;">' ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $r -> category != $lastcat ) {
echo '<tr><td colspan="3">' ;
if ( $lastcat != 'something_that_does_not_exist' )
echo '<br /><br />' ;
echo " <h3> $r->category </h3> " ;
echo '</td></tr>' ;
$lastcat = $r -> category ;
// anytime the age category changes, we want to re-force it to display the division again
$lastdiv = 'something_that_does_not_exist' ;
}
if ( $r -> division != $lastdiv ) {
echo '<tr><td colspan="3">' ;
if ( $lastdiv != 'something_that_does_not_exist' )
echo '<br />' ;
echo " <h4> $r->division </h3> " ;
echo '</td></tr>' ;
$lastdiv = $r -> division ;
}
2007-03-08 21:33:22 +00:00
2025-01-29 03:30:48 +00:00
// no need to output the status if we dont have a reg fee, becuase status is either 'complete' or 'payment pending' but if we dont have a regfee it can never be payment pending, so thus, it must be complete!
$statusstar = '' ;
if ( $config [ 'regfee' ] > 0 ) {
if ( $r -> status == 'paymentpending' )
$statusstar = '<font color="red">*</font>' ;
// $status_text=i18n("Complete");
} else
$status_text = '' ;
2007-03-08 21:33:22 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr>' ;
echo " <td> $status_text " . $statusstar . '</td>' ;
echo " <td> $r->projectnumber </td> " ;
echo " <td> $r->title </td> " ;
2007-03-08 21:33:22 +00:00
2025-01-29 03:30:48 +00:00
$sq = $pdo -> prepare ( " SELECT students.firstname,
2007-03-08 21:33:22 +00:00
students . lastname ,
students . id ,
2007-03-31 01:10:08 +00:00
students . webfirst ,
students . weblast ,
2007-03-08 21:33:22 +00:00
schools . school
FROM
students , schools
WHERE
students . registrations_id = '$r->reg_id'
AND
students . schools_id = schools . id
" );
2025-01-29 03:30:48 +00:00
$sq -> execute ();
// Check for errors after the query execution
$errorInfo = $pdo -> errorInfo ();
if ( $errorInfo [ 0 ] != '00000' ) {
// If there's an error (the SQLSTATE isn't '00000', which means no error)
echo 'Error: ' . $errorInfo [ 2 ]; // The third element contains the error message
}
$studnum = 1 ;
$schools = '' ;
$students = '' ;
$sameschools = true ;
$lastschool = '' ;
while ( $studentinfo = $sq -> fetch ( PDO :: FETCH_OBJ )) {
if ( $studentinfo -> webfirst == 'yes' )
$students .= " $studentinfo->firstname " ;
if ( $studentinfo -> weblast == 'yes' )
$students .= " $studentinfo->lastname " ;
if ( $studentinfo -> webfirst == 'yes' || $studentinfo -> weblast == 'yes' )
$students .= '<br />' ;
$schools .= " $studentinfo->school <br /> " ;
if ( $lastschool ) {
if ( $lastschool != $studentinfo -> school )
$sameschools = false ;
2007-03-08 21:33:22 +00:00
}
2025-01-29 03:30:48 +00:00
$lastschool = $studentinfo -> school ;
$stats_totalstudents ++ ;
2007-03-08 21:33:22 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $sameschools )
$schools = $lastschool ;
echo " <td> $schools </td> " ;
echo " <td> $students </td> " ;
echo '</tr>' ;
2007-03-08 21:33:22 +00:00
}
2025-01-29 03:30:48 +00:00
echo " </table> \n " ;
echo '<br />' ;
}
2007-03-08 21:33:22 +00:00
send_footer ();
?>