* Copyright (C) 2005 James Grant * * 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. */ ?> 'committee_main.php', 'Administration' => 'admin/index.php'), 'print_awards_ceremony_scripts'); echo '
'; echo '
'; echo ''; echo ''; // list output formats echo " \t "; echo "\n"; echo ''; // list award subsets to output echo ''; echo "\n"; echo ''; // list award formats to output echo '"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '
' . i18n('Year') . ':'; // 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(); echo '
\t\t" . i18n('Type') . ": \t \t \t
' . i18n('Award Type') . ':
' . i18n('Script Format') . ":
' . i18n('Show awards without winners') . ':
' . i18n('Show prizes without winners') . ':
' . i18n('Show criteria for each award') . ':
' . i18n('Show student name pronunciation') . ':
' . 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.') . ':
' . i18n('Include the following age categories') . ':'; $q = $pdo->prepare("SELECT * FROM projectcategories WHERE year=? ORDER BY id"); $q->execute([$config['FAIRYEAR']]); while ($r = $q->fetch(PDO::FETCH_OBJ)) { echo "id}]\" type=\"checkbox\" checked=\"checked\" />"; echo '' . i18n($r->category) . '
'; } echo '
'; echo ''; echo '
'; send_footer(); ?>