require("common.inc.php");
include "register_judges.inc.php";
//authenticate based on email address and registration number from the SESSION
if(! ($_SESSION['email'] && $_SESSION['judges_id']) )
{
header("Location: register_judges.php");
exit;
}
$q=mysql_query("SELECT * FROM judges WHERE email='".$_SESSION['email']."' AND id='".$_SESSION['judges_id']."'");
echo mysql_error();
if(mysql_num_rows($q)==0)
{
header("Location: register_judges.php?action=logout");
exit;
}
$judgeinfo=mysql_fetch_object($q);
send_header("Judges Registration");
if($_GET['action']=="activate")
{
mysql_query("INSERT INTO judges_years (judges_id,year) VALUES ('".$_SESSION['judges_id']."','".$config['FAIRYEAR']."')");
echo happy(i18n("Judge profile for %1 successfully activated",array($config['FAIRYEAR'])));
}
if($_GET['action']=="deactivate")
{
mysql_query("DELETE FROM judges_years WHERE judges_id='".$_SESSION['judges_id']."' AND year='".$config['FAIRYEAR']."'");
echo happy(i18n("Judge profile for %1 successfully deactivated",array($config['FAIRYEAR'])));
}
//only display the named greeting if we have their name
if($judgeinfo->firstname)
{
echo i18n("Hello %1",array($judgeinfo->firstname));
echo "
";
}
echo "
";
//first, we need to see if they havec the current FAIRYEAR activated, if not, we'll keep their acocunt 'dormant' and it wont
//be used for anything, but will still be available for them to login in the following years.
$q=mysql_query("SELECT * FROM judges_years WHERE judges_id='".$_SESSION['judges_id']."' AND year='".$config['FAIRYEAR']."'");
if(!mysql_num_rows($q))
{
echo i18n("If you would like to participate as a judge in the %1 %2 please click the activate button below to activate your judges account for the fair",array($config['FAIRYEAR'],$config['fairname']));
echo "
";
echo "
";
echo "
".i18n("Registration Item")." | ".i18n("Status")." |
---|---|
"; echo ""; echo i18n("Personal Information"); echo ""; echo " | "; //check to see if its complete $statuspersonal=personalStatus(); echo outputStatus($statuspersonal); echo " |
"; echo ""; echo i18n("Organization Information"); echo ""; echo " | "; //check to see if its complete $statusorganization=organizationStatus(); echo outputStatus($statusorganization); echo " |
"; echo ""; echo i18n("Areas of Expertise"); echo ""; echo " | "; //check to see if its complete $statusexpertise=expertiseStatus(); echo outputStatus($statusexpertise); echo " |