2005-04-21 20:29:08 +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 ) 2005 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 .
*/
2005-04-21 20:29:08 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
user_auth_required ( 'committee' , 'admin' );
require ( '../lpdf.php' );
require ( '../lcsv.php' );
require ( 'judges.inc.php' );
$type = $_GET [ 'type' ];
if ( $type == 'pdf' ) {
$rep = new lpdf ( i18n ( $config [ 'fairname' ]),
i18n ( 'Judging Team Project Assignments' ),
$_SERVER [ 'DOCUMENT_ROOT' ] . $config [ 'SFIABDIRECTORY' ] . '/data/logo-200.gif' );
$rep -> newPage ();
$rep -> setFontSize ( 11 );
} else if ( $type == 'csv' ) {
$rep = new lcsv ( i18n ( 'Judging Team Project Assignments' ));
}
$teams = getJudgingTeams ();
$q = $pdo -> prepare ( " SELECT DISTINCT(date) AS d FROM judges_timeslots WHERE year=' " . $config [ 'FAIRYEAR' ] . " ' " );
$q -> execute ();
if ( $q -> rowCount () > 1 )
$show_date = true ;
else
$show_date = false ;
foreach ( $teams AS $team ) {
$table = array ();
$table [ 'header' ] = array ( i18n ( 'Timeslot' ), i18n ( 'Proj #' ), i18n ( 'Project Title' ));
if ( $show_date )
$table [ 'widths' ] = array ( 2.5 , 0.75 , 3.75 );
2005-04-21 20:29:08 +00:00
else
2025-01-29 03:30:48 +00:00
$table [ 'widths' ] = array ( 1.5 , 0.75 , 4.75 );
2005-04-21 20:29:08 +00:00
2025-01-29 03:30:48 +00:00
$table [ 'dataalign' ] = array ( 'center' , 'center' , 'left' );
2005-04-21 20:29:08 +00:00
2025-01-29 03:30:48 +00:00
$rep -> heading ( $team [ 'name' ] . ' (' . $team [ 'num' ] . ')' );
2005-04-21 20:29:08 +00:00
2025-01-29 03:30:48 +00:00
$memberlist = '' ;
if ( count ( get_value_from_array ( $team , 'members' , []))) {
foreach ( $team [ 'members' ] AS $member ) {
$memberlist .= $member [ 'firstname' ] . ' ' . $member [ 'lastname' ];
if ( $member [ 'captain' ] == 'yes' )
$memberlist .= '*' ;
$memberlist .= ', ' ;
2005-04-21 20:29:08 +00:00
}
2025-01-29 03:30:48 +00:00
$memberlist = substr ( $memberlist , 0 , - 2 );
}
$rep -> addText ( $memberlist );
if ( count ( $team [ 'awards' ])) {
$rep -> heading ( i18n ( 'Awards that this team judges' ) . ':' );
foreach ( $team [ 'awards' ] AS $award ) {
$rep -> addText ( $award [ 'name' ]);
$rep -> addText ( i18n ( 'Criteria' ) . ': ' . $award [ 'criteria' ]);
// get category eligibility
$q = $pdo -> prepare ( " SELECT projectcategories.category FROM projectcategories, award_awards_projectcategories WHERE award_awards_projectcategories.projectcategories_id=projectcategories.id AND award_awards_projectcategories.award_awards_id=' { $award [ 'id' ] } ' AND award_awards_projectcategories.year=' { $config [ 'FAIRYEAR' ] } ' AND projectcategories.year=' { $config [ 'FAIRYEAR' ] } ' ORDER BY category " );
$q -> execute ();
show_pdo_errors_if_any ( $pdo );
$cats = '' ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $cats )
$cats .= ', ' . i18n ( $r -> category );
else
$cats = i18n ( $r -> category );
2007-03-28 22:32:57 +00:00
}
2025-01-29 03:30:48 +00:00
$rep -> addText ( i18n ( 'Categories' ) . " : $cats " );
// get division eligibility
$q = $pdo -> prepare ( " SELECT projectdivisions.division_shortform FROM projectdivisions, award_awards_projectdivisions WHERE award_awards_projectdivisions.projectdivisions_id=projectdivisions.id AND award_awards_projectdivisions.award_awards_id=' { $award [ 'id' ] } ' AND award_awards_projectdivisions.year=' { $config [ 'FAIRYEAR' ] } ' AND projectdivisions.year=' { $config [ 'FAIRYEAR' ] } ' ORDER BY division_shortform " );
$q -> execute ();
show_pdo_errors_if_any ( $pdo );
$divs = '' ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $divs )
$divs .= ', ' . i18n ( $r -> division_shortform );
else
$divs = i18n ( $r -> division_shortform );
}
$rep -> addText ( i18n ( 'Divisions' ) . " : $divs " );
2007-03-28 22:32:57 +00:00
}
2025-01-29 03:30:48 +00:00
}
2007-03-28 22:32:57 +00:00
2025-01-29 03:30:48 +00:00
$rep -> nextLine ();
2005-04-21 20:29:08 +00:00
2025-01-29 03:30:48 +00:00
// get the timeslots that this team has.
$q = $pdo -> prepare ( " SELECT
2005-04-21 20:29:08 +00:00
judges_timeslots . id ,
judges_timeslots . date ,
judges_timeslots . starttime ,
judges_timeslots . endtime
FROM
judges_timeslots ,
judges_teams ,
judges_teams_timeslots_link
WHERE
2025-01-29 03:30:48 +00:00
judges_teams . id = '" . $team[' id '] . "' AND
2005-04-21 20:29:08 +00:00
judges_teams . id = judges_teams_timeslots_link . judges_teams_id AND
judges_timeslots . id = judges_teams_timeslots_link . judges_timeslots_id
ORDER BY
date , starttime
" );
2025-01-29 03:30:48 +00:00
$q -> execute ();
$numslots = $q -> rowCount ();
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $show_date )
$timeslot = format_date ( $r -> date ) . ' ' ;
else
$timeslot = '' ;
$timeslot .= format_time ( $r -> starttime ) . ' - ' . format_time ( $r -> endtime );
$projq = $pdo -> prepare ( " SELECT
2005-04-21 20:29:08 +00:00
projects . projectnumber ,
projects . id ,
projects . title
FROM
projects ,
judges_teams_timeslots_projects_link
WHERE
judges_teams_timeslots_projects_link . judges_timeslots_id = '$r->id' AND
2025-01-29 03:30:48 +00:00
judges_teams_timeslots_projects_link . judges_teams_id = '" . $team[' id '] . "' AND
2005-04-21 20:29:08 +00:00
judges_teams_timeslots_projects_link . projects_id = projects . id AND
2025-01-29 03:30:48 +00:00
judges_teams_timeslots_projects_link . year = '" . $config[' FAIRYEAR '] . "'
2005-04-21 20:29:08 +00:00
ORDER BY
projectnumber
" );
2025-01-29 03:30:48 +00:00
$projq -> execute ();
2005-04-21 20:29:08 +00:00
2025-01-29 03:30:48 +00:00
while ( $proj = $projq -> fetch ( PDO :: FETCH_OBJ )) {
$table [ 'data' ][] = array ( $timeslot , $proj -> projectnumber , $proj -> title );
// make the timeslot empty so we dont list it each time if there's more than one project in the timeslot
$timeslot = '' ;
2005-04-21 20:29:08 +00:00
}
}
2025-01-29 03:30:48 +00:00
$rep -> addTable ( $table );
$rep -> newPage ();
unset ( $table );
}
2005-04-21 20:29:08 +00:00
2025-01-29 03:30:48 +00:00
$rep -> output ();
2005-04-21 20:29:08 +00:00
?>