forked from science-ation/science-ation
101 lines
3.2 KiB
PHP
101 lines
3.2 KiB
PHP
<?
|
|
/*
|
|
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.
|
|
*/
|
|
?>
|
|
<?
|
|
require("../common.inc.php");
|
|
require_once("../user.inc.php");
|
|
user_auth_required('committee', 'admin');
|
|
include "judges.inc.php";
|
|
require("../tableeditor.class.php");
|
|
require("../judge.class.php");
|
|
|
|
send_header("Judge Manager",
|
|
array('Committee Main' => 'committee_main.php',
|
|
'Administration' => 'admin/index.php',
|
|
'Judges' => 'admin/judges.php') );
|
|
|
|
?>
|
|
<script language="javascript" type="text/javascript">
|
|
|
|
function openjudgeinfo(id)
|
|
{
|
|
if(id)
|
|
currentid=id;
|
|
else
|
|
currentid=document.forms.judges["judgelist[]"].options[document.forms.judges["judgelist[]"].selectedIndex].value;
|
|
|
|
window.open("judges_info.php?id="+currentid,"JudgeInfo","location=no,menubar=no,directories=no,toolbar=no,width=770,height=500,scrollbars=yes");
|
|
return false;
|
|
|
|
}
|
|
</script>
|
|
|
|
<?
|
|
$icon_path = $config['SFIABDIRECTORY']."/images/16/";
|
|
$icon_exitension = $config['icon_extension'];
|
|
|
|
print("<br />");
|
|
if(isset($_GET['show_what'])) {
|
|
$_SESSION['judgesmanager_show_what']=$_GET['show_what'];
|
|
}
|
|
if($_SESSION['judgesmanager_show_what']) {
|
|
$show_what = $_SESSION['judgesmanager_show_what'];
|
|
} else {
|
|
$show_what = "cy_complete";
|
|
}
|
|
print("<form name=\"ShowJudges\" method=\"get\" action=\"{$_SERVER['PHP_SELF']}\">");
|
|
print("<select id=\"show_what\" name=\"show_what\">");
|
|
$s = ($show_what == 'all') ? " selected=\"selected\" " : "";
|
|
print("<option value=\"all\" $s>All Judges</option>");
|
|
$s = ($show_what == 'cy_active') ? " selected=\"selected\" " : "";
|
|
print("<option value=\"cy_active\" $s>All {$config['FAIRYEAR']} Judges (complete and incomplete)</option>");
|
|
$s = ($show_what == 'cy_complete') ? " selected=\"selected\" " : "";
|
|
print("<option value=\"cy_complete\" $s>All {$config['FAIRYEAR']} Judges (only complete)</option>");
|
|
print("</select>");
|
|
print("<input type=submit value=\"".i18n("Show")."\">");
|
|
print("</form>");
|
|
|
|
// echo i18n("Note: Deleting a judge from this screen only unlinks them from the current fairyear");
|
|
|
|
$editor = new TableEditor('judge');
|
|
|
|
// $editor->setDebug(true);
|
|
|
|
switch($show_what) {
|
|
case "all":
|
|
$editor->setOption('judges_show_what', 'all');
|
|
break;
|
|
case "cy_active":
|
|
$editor->setOption('judges_show_what', 'current_year_active');
|
|
break;
|
|
case "cy_complete":
|
|
$editor->setOption('judges_show_what', 'current_year_complete');
|
|
break;
|
|
}
|
|
|
|
$editor->execute();
|
|
|
|
|
|
send_footer();
|
|
?>
|