2005-03-02 18:48:01 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
2025-02-10 19:54:20 +00:00
* Science - ation Website : https :// science - ation . ca /
2025-01-29 03:30:48 +00:00
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
2025-02-10 19:54:20 +00:00
* Copyright ( C ) 2024 AlgoLibre Inc . < science - ation @ algolibre . io >
2025-01-29 03:30:48 +00:00
*
* 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 .
*/
2005-03-02 18:48:01 +00:00
?>
< ?
2025-02-10 19:54:20 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
2025-01-29 03:30:48 +00:00
user_auth_required ( 'committee' , 'admin' );
2025-02-10 19:54:20 +00:00
require ( '../lpdf.php' );
2005-03-02 18:48:01 +00:00
2025-01-29 03:30:48 +00:00
$catq = $pdo -> prepare ( " SELECT * FROM projectcategories WHERE year=' " . $config [ 'FAIRYEAR' ] . " ' AND id=' " . $_GET [ 'cat' ] . " ' " );
2024-12-08 02:42:00 -05:00
$catq -> execute ();
2025-01-29 03:30:48 +00:00
if ( $catr = $catq -> fetch ( PDO :: FETCH_OBJ )) {
2025-02-10 19:54:20 +00:00
$pdf = new lpdf (
i18n ( $config [ 'fairname' ]),
2025-01-29 03:30:48 +00:00
i18n ( 'Checkin List' ) . ' - ' . i18n ( $catr -> category ),
2025-02-10 19:54:20 +00:00
$_SERVER [ 'DOCUMENT_ROOT' ] . $config [ 'SFIABDIRECTORY' ] . '/data/logo-200.gif'
);
2005-03-02 18:48:01 +00:00
$pdf -> newPage ();
$pdf -> setFontSize ( 11 );
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( " SELECT registrations.id AS reg_id,
2005-03-02 18:48:01 +00:00
registrations . num AS reg_num ,
registrations . status ,
projects . title ,
projects . projectnumber ,
projects . projectdivisions_id
FROM
registrations
left outer join projects on projects . registrations_id = registrations . id
WHERE
2025-01-29 03:30:48 +00:00
registrations . year = '" . $config[' FAIRYEAR '] . "'
2005-03-02 18:48:01 +00:00
AND ( registrations . status = 'complete' OR registrations . status = 'paymentpending' )
AND projects . projectcategories_id = '$catr->id'
ORDER BY
projects . title
" );
2025-01-29 03:30:48 +00:00
$q -> execute ();
show_pdo_errors_if_any ( $pdo );
$table = array ();
// only show the 'paid' column if the regfee > 0. if registration is fee, then we dont care about the 'paid' column!
if ( $config [ 'regfee' ] > 0 ) {
$table [ 'header' ] = array ( i18n ( 'Paid?' ), i18n ( 'Proj #' ), i18n ( 'Project Title' ), i18n ( 'Student(s)' ), i18n ( 'Div' ));
$table [ 'widths' ] = array ( 0.5 , 0.6 , 3.5 , 2.4 , 0.5 );
$table [ 'dataalign' ] = array ( 'center' , 'left' , 'left' , 'left' , 'center' );
} else {
$table [ 'header' ] = array ( i18n ( 'Proj #' ), i18n ( 'Project Title' ), i18n ( 'Student(s)' ), i18n ( 'Div' ));
$table [ 'widths' ] = array ( 0.6 , 3.7 , 2.7 , 0.5 );
$table [ 'dataalign' ] = array ( 'left' , 'left' , 'left' , 'center' );
2005-03-02 18:48:01 +00:00
}
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$divq = $pdo -> prepare ( " SELECT division,division_shortform FROM projectdivisions WHERE year=' " . $config [ 'FAIRYEAR' ] . " ' AND id=' " . $r -> projectdivisions_id . " ' " );
2024-12-08 02:42:00 -05:00
$divq -> execute ();
2025-01-29 03:30:48 +00:00
$divr = $divq -> fetch ( PDO :: FETCH_OBJ );
2005-03-02 18:48:01 +00:00
2025-01-29 03:30:48 +00:00
$sq = $pdo -> prepare ( " SELECT students.firstname,
2005-03-02 18:48:01 +00:00
students . lastname
FROM
students
WHERE
students . registrations_id = '$r->reg_id'
" );
2024-12-08 02:42:00 -05:00
$sq -> execute ();
2005-03-02 18:48:01 +00:00
2025-01-29 03:30:48 +00:00
$students = '' ;
$studnum = 0 ;
while ( $studentinfo = $sq -> fetch ( PDO :: FETCH_OBJ )) {
if ( $studnum > 0 )
$students .= ', ' ;
$students .= " $studentinfo->firstname $studentinfo->lastname " ;
2005-03-02 18:48:01 +00:00
$studnum ++ ;
}
2025-01-29 03:30:48 +00:00
// only show the paid column if regfee >0
if ( $config [ 'regfee' ] > 0 ) {
switch ( $r -> status ) {
case 'paymentpending' :
$status_text = 'No' ;
break ;
case 'complete' :
$status_text = '' ;
break ;
2005-03-02 18:48:01 +00:00
}
2025-01-29 03:30:48 +00:00
$status_text = i18n ( $status_text );
2005-03-02 18:48:01 +00:00
2025-01-29 03:30:48 +00:00
$table [ 'data' ][] = array ( $status_text , $r -> proj_num , $r -> title , $students , i18n ( $divr -> division_shortform ));
} else
$table [ 'data' ][] = array ( $r -> projectnumber , $r -> title , $students , i18n ( $divr -> division_shortform ));
2005-03-02 18:48:01 +00:00
}
$pdf -> addTable ( $table );
$pdf -> output ();
}
?>