2009-09-25 19:14:37 +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 .
*/
2009-09-25 19:14:37 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require_once ( 'common.inc.php' );
require_once ( 'projects.inc.php' );
require_once ( 'lpdf.php' );
/*
* Creates a nomination form for every winner of a specific award , should only be called
* by remote . php , which calls it only if the award has additional materials .
*/
2009-09-25 19:14:37 +00:00
function fair_additional_materials ( $fair , $award , $year )
{
2025-01-29 03:30:48 +00:00
global $config , $pdo ;
$rep = new lpdf ( " { $config [ 'fairname' ] } Awards Program " ,
'Nomination Form' ,
$_SERVER [ 'DOCUMENT_ROOT' ] . $config [ 'SFIABDIRECTORY' ] . '/data/logo.gif' );
2009-09-25 19:14:37 +00:00
/* Grab a list of winners */
2024-12-09 01:06:15 -05:00
$q = $pdo -> prepare ( " SELECT * FROM award_prizes
2009-09-25 19:14:37 +00:00
LEFT JOIN winners ON winners . awards_prizes_id = award_prizes . id
WHERE winners . year = '$year'
AND winners . fairs_id = '{$fair[' id ']}' " );
2025-01-29 03:30:48 +00:00
$q -> execute ();
while ( $r = $q -> fetch ()) {
2009-09-25 19:14:37 +00:00
$pid = $r [ 'projects_id' ];
2025-01-29 03:30:48 +00:00
$rep -> newPage ( '' , '' , 1 );
2009-09-25 19:14:37 +00:00
$rep -> setFontSize ( 12 );
/* Left margin width */
$x = 1 ;
$rep -> setFontSize ( 14 );
2025-01-29 03:30:48 +00:00
$rep -> addText ( " { $award [ 'name' ] } " , 'center' );
2009-09-25 19:14:37 +00:00
$rep -> setFontSize ( 12 );
2025-01-29 03:30:48 +00:00
$rep -> addText ( " { $r [ 'prize' ] } " , 'center' );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> hr ();
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'Name of Regional Fair: ___________________________________________________' , $x );
2009-09-25 19:14:37 +00:00
$rep -> addTextX ( " { $fair [ 'name' ] } " , $x + 1.75 );
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'Authorized By: __________________________________________________________' , $x );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'Position: _______________________________________________________________' , $x );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'Date: ________________________________________' , $x );
2009-09-25 19:14:37 +00:00
$rep -> addTextX ( date ( 'l F dS, Y' ), $x + 0.5 );
$rep -> nextLine ();
$rep -> nextLine ();
$p = project_load ( $pid );
2025-01-29 03:30:48 +00:00
// print_r($p);
2009-09-25 19:14:37 +00:00
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'Project Title: ____________________________________________________________' , $x );
2009-09-25 19:14:37 +00:00
$rep -> prevLine ();
2025-01-29 03:30:48 +00:00
$rep -> addText ( " { $p [ 'title' ] } " , 'left' , $x + 1 );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> nextLine ();
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
foreach ( $p [ 'student' ] as $s ) {
$rep -> addTextX ( 'Name of Student: ________________________________________________________' , $x );
$rep -> addTextX ( " { $s [ 'firstname' ] } { $s [ 'lastname' ] } " , $x + 1.25 );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'Grade: _____________ Date of birth: _____________' , $x );
$rep -> addTextX ( " { $s [ 'grade' ] } " , $x + 0.75 );
list ( $y , $m , $d ) = explode ( '-' , $s [ 'dateofbirth' ]);
$dob = date ( 'M j, Y' , mktime ( 0 , 0 , 0 , $m , $d , $y ));
$rep -> addTextX ( " $dob " , $x + 3 );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'School: ________________________________________________________________' , $x );
2009-09-25 19:14:37 +00:00
$rep -> addTextX ( " { $s [ 'school' ] } " , $x + 0.75 );
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'Home Address: __________________________________________________________' , $x );
2009-09-25 19:14:37 +00:00
$rep -> prevLine ();
2025-01-29 03:30:48 +00:00
$rep -> addText ( " { $s [ 'address' ] } { $s [ 'city' ] } , { $s [ 'province' ] } { $s [ 'postalcode' ] } " , 'left' , $x + 1.25 );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> nextLine ();
$rep -> nextLine ();
}
2025-01-29 03:30:48 +00:00
2009-09-25 19:14:37 +00:00
$rep -> hr ();
$rep -> setFontBold ();
$rep -> addText ( " To be considered for this award the following materials need to be included with this form: \n " );
$rep -> setFontNormal ();
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addText ( '1.' );
2009-09-25 19:14:37 +00:00
$rep -> prevLine ();
2025-01-29 03:30:48 +00:00
$rep -> addText ( " Project Summary/Discussion Paper (Please include a copy of the summary sheet and any documentation that accompanied the display, including charts and diagrams, that will improve the understanding and comprehension of the science fair project. \n " , 'left' , 0.9 );
$rep -> addText ( '2. Copy of Judges Report and Comments.' );
$rep -> addText ( '3. Colour photograph(s) of the exhibitor(s) and the exhibit.' );
$rep -> addText ( '4. Completed Declaration of Exhibitor form (next page) ' );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> newPage ();
$rep -> nextLine ();
$rep -> setFontBold ();
2025-01-29 03:30:48 +00:00
$rep -> addText ( 'DECLARATION OF EXHIBITOR' , 'center' );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> setFontNormal ();
$rep -> nextLine ();
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$i = ( $p [ 'num_students' ] == 1 ) ? 'I' : 'We' ;
$my = ( $p [ 'num_students' ] == 1 ) ? 'my' : 'our' ;
2009-09-25 19:14:37 +00:00
$rep -> addText ( " 1. $i certify this exhibit and report is $my own work. " );
$rep -> nextLine ();
$fn = strtoupper ( $config [ 'fairname' ]);
2025-01-29 03:30:48 +00:00
$rep -> addText ( '2.' );
2009-09-25 19:14:37 +00:00
$rep -> prevLine ();
2025-01-29 03:30:48 +00:00
$rep -> addText ( " $i hereby give permission to $fn the AWARDING ORGANIZATION to publicize $my award and reprint $my project summary. " , 'left' , 0.9 );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> nextLine ();
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
foreach ( $p [ 'student' ] as $s ) {
$rep -> addText ( '______________________________________ _____________________' , 'center' );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> addTextX ( " SIGNATURE ( { $s [ 'firstname' ] } { $s [ 'lastname' ] } ) " , 1.5 );
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'Date' , 6.25 );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> nextLine ();
$rep -> nextLine ();
}
2025-01-29 03:30:48 +00:00
$rep -> addText ( 'Certified by:' );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> nextLine ();
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addText ( '______________________________________ _____________________' , 'center' );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addTextX ( 'POSITION' , 2.5 );
$rep -> addTextX ( 'Date' , 6.25 );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
$rep -> nextLine ();
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addText ( '_________________________________________________' , 'center' );
2009-09-25 19:14:37 +00:00
$rep -> nextLine ();
2025-01-29 03:30:48 +00:00
$rep -> addText ( '(Regional Chairperson, Awards Chairperson, or Chief Judge)' , 'center' );
2009-09-25 19:14:37 +00:00
}
return $rep -> outputArray ();
}
?>