2007-12-10 09:40:34 +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 .
*/
2007-12-10 09:40:34 +00:00
?>
< ?
2025-02-10 19:54:20 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
require_once ( 'reports.inc.php' );
2025-01-29 03:30:48 +00:00
user_auth_required ( 'committee' , 'admin' );
2025-02-10 19:54:20 +00:00
send_header (
'Award Ceremony Scripts' ,
array (
'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php'
),
'print_awards_ceremony_scripts'
);
2025-01-29 03:30:48 +00:00
echo '<br />' ;
echo '<form action="reports_acscript.php" method="get">' ;
echo '<table class="tableedit">' ;
echo '<tr><td><b>' . i18n ( 'Year' ) . ':</b></td><td>' ;
// get the year information, use fairname since it should be there for all years[right?]
$results = $pdo -> prepare ( " SELECT year FROM config WHERE var='fairname' AND year > 0 ORDER BY year DESC " );
$results -> execute ();
2007-12-10 09:40:34 +00:00
2025-01-29 03:30:48 +00:00
echo '<select name="year" size=1>' ;
while ( $r = $results -> fetch ( PDO :: FETCH_OBJ )) {
echo " <option> $r->year </option> " ;
}
echo '</select></td></tr>' ;
2007-12-17 23:20:21 +00:00
2025-01-29 03:30:48 +00:00
// list output formats
echo " <tr><td>
\t\t < b > " . i18n('Type') . " :</ b >
\t </ td >
\t < td >
\t \t < select name = \ " type \" size=1>
2007-12-17 23:20:21 +00:00
< option value = \ " pdf \" >PDF</option>
< option value = \ " csv \" >CSV</option>
</ select ></ td > " ;
2025-01-29 03:30:48 +00:00
echo " </td></tr> \n " ;
echo '<tr>' ;
// list award subsets to output
echo '<td><b>' . i18n ( 'Award Type' ) . ':</b></td> <td> <select name="awardtype" size=1>' ;
$results = $pdo -> prepare ( 'SELECT type FROM award_types WHERE year=' . $config [ 'FAIRYEAR' ] . ' ORDER BY type' );
$results -> execute ();
echo '<option value="All">' . i18n ( 'All' ) . '</option>' ;
while ( $r = $results -> fetch ( PDO :: FETCH_OBJ )) {
echo " <option value= \" $r->type\ " > " . i18n( " $r -> type " ) . '</option>';
}
echo '</select></td>' ;
echo " </td></tr> \n " ;
echo '<tr>' ;
2010-03-22 02:22:20 +00:00
2025-01-29 03:30:48 +00:00
// list award formats to output
echo ' < td >
< b > ' . i18n(' Script Format ' ) . " :</b>
2010-03-22 02:22:20 +00:00
</ td >
< td >
< select name = \ " scriptformat \" size=1>
< option value = \ " default \" >Default</option>
< option value = \ " formatted \" >Formatted</option>
2025-01-29 03:30:48 +00:00
\t </ select ></ td ></ tr > " ;
2007-12-17 23:20:21 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td ><b>' . i18n ( 'Show awards without winners' ) . ':</b></td>' ;
echo '<td><input name="show_unawarded_awards" type="checkbox" ' . ( $config [ 'reports_show_unawarded_awards' ] == 'yes' ? 'checked' : '' ) . '/></td></tr>' ;
echo '<tr><td ><b>' . i18n ( 'Show prizes without winners' ) . ':</b></td>' ;
echo '<td><input name="show_unawarded_prizes" type="checkbox" ' . ( $config [ 'reports_show_unawarded_prizes' ] == 'yes' ? 'checked' : '' ) . '/></td></tr>' ;
echo '<tr><td ><b>' . i18n ( 'Show criteria for each award' ) . ':</b></td>' ;
echo '<td><input name="show_criteria" type="checkbox" ' . ( $config [ 'reports_show_criteria' ] == 'yes' ? 'checked' : '' ) . ' value="on"/></td></tr>' ;
echo '<tr><td ><b>' . i18n ( 'Show student name pronunciation' ) . ':</b></td>' ;
echo '<td><input name="show_pronunciation" type="checkbox" /></td></tr>' ;
echo '<tr><td width="30%"><b>' . i18n ( 'Group divisional results by Prize (instead of Award Name). This groups all the honourable mentions in all divisions together, all the bronzes together, etc.' ) . ':</b></td>' ;
echo '<td><input name="group_by_prize" type="checkbox" /></td></tr>' ;
2008-02-29 07:10:08 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td><b>' . i18n ( 'Include the following age categories' ) . ':</b></td>' ;
echo '<td>' ;
$q = $pdo -> prepare ( " SELECT * FROM projectcategories WHERE year=' { $config [ 'FAIRYEAR' ] } ' ORDER BY id " );
$q -> execute ();
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
2008-02-29 07:10:08 +00:00
echo " <input name= \" show_category[ { $r -> id } ] \" type= \" checkbox \" checked= \" checked \" /> " ;
2025-01-29 03:30:48 +00:00
echo '' . i18n ( $r -> category ) . '<br />' ;
}
2008-02-29 07:10:08 +00:00
2025-01-29 03:30:48 +00:00
echo '</table>' ;
echo '<input type="submit" value="' . i18n ( 'Generate Script' ) . '" />' ;
echo '</form>' ;
2007-12-10 09:40:34 +00:00
2025-01-29 03:30:48 +00:00
send_footer ();
2007-12-10 09:40:34 +00:00
?>