Don't allow any changes to any forms once the forms have been received by the fair

Also, update the CSS to make teh h1-h4's smaller and reduce the margin-bottom size for them
This commit is contained in:
james 2005-01-13 18:50:07 +00:00
parent 54098a8aab
commit afdc22a2b2
8 changed files with 250 additions and 163 deletions

View File

@ -1,4 +1,16 @@
<? <?
function registrationFormsReceived($reg_id="")
{
if($reg_id) $rid=$reg_id;
else $rid=$_SESSION['registration_id'];
$q=mysql_query("SELECT status FROM registrations WHERE id='$rid'");
$r=mysql_fetch_object($q);
if($r->status=="complete" || $r->status=="paymentpending")
return true;
else
return false;
}
function studentStatus($reg_id="") function studentStatus($reg_id="")
{ {

View File

@ -47,6 +47,12 @@ echo mysql_error();
if($_POST['action']=="save") if($_POST['action']=="save")
{
if(registrationFormsReceived())
{
echo error(i18n("Cannot make changes to forms once they have been received by the fair"));
}
else
{ {
//first, lets make sure this emergency contact really does belong to them //first, lets make sure this emergency contact really does belong to them
foreach($_POST['ids'] AS $id) foreach($_POST['ids'] AS $id)
@ -73,6 +79,7 @@ echo mysql_error();
} }
} }
} }
}

View File

@ -14,7 +14,7 @@
exit; exit;
} }
$q=mysql_query("SELECT registrations.id AS regid, students.id AS studentid, students.firstname FROM registrations,students ". $q=mysql_query("SELECT registrations.status AS status, registrations.id AS regid, students.id AS studentid, students.firstname FROM registrations,students ".
"WHERE students.email='".$_SESSION['email']."' ". "WHERE students.email='".$_SESSION['email']."' ".
"AND registrations.num='".$_SESSION['registration_number']."' ". "AND registrations.num='".$_SESSION['registration_number']."' ".
"AND registrations.id='".$_SESSION['registration_id']."' ". "AND registrations.id='".$_SESSION['registration_id']."' ".
@ -39,7 +39,25 @@ echo mysql_error();
echo "<br />"; echo "<br />";
} }
echo "<br />"; echo "<br />";
if(registrationFormsReceived())
{
if($r->status=="complete")
{
echo i18n("Congratulations, You are successfully registered for the %1",array($config['fairname']));
}
else if($r->status=="paymentpending")
{
echo i18n("We have received your forms but are missing your registration fee. You are NOT registered for the fair until your registration fee has been received");
}
}
else
{
echo i18n("Please use the checklist below to complete your registration. Click on an item in the table to edit that information. When you have entered all information, the <b>Status</b> field will change to <b>Complete</b>"); echo i18n("Please use the checklist below to complete your registration. Click on an item in the table to edit that information. When you have entered all information, the <b>Status</b> field will change to <b>Complete</b>");
}
echo "<br />"; echo "<br />";
echo "<br />"; echo "<br />";
@ -119,6 +137,11 @@ echo "</td></tr>";
//received information //received information
echo "<tr><td>".i18n("Signature Page Received")."</td><td>"; echo "<tr><td>".i18n("Signature Page Received")."</td><td>";
if(registrationFormsReceived())
echo outputStatus("complete");
else
echo outputStatus("incomplete");
//check to see if its complete //check to see if its complete
echo "</td></tr>"; echo "</td></tr>";

View File

@ -40,6 +40,12 @@ echo mysql_error();
if($_POST['action']=="save") if($_POST['action']=="save")
{ {
if(registrationFormsReceived())
{
echo error(i18n("Cannot make changes to forms once they have been received by the fair"));
}
else
{
$x=1; $x=1;
while($_POST["num"][$x]) while($_POST["num"][$x])
{ {
@ -82,11 +88,18 @@ if($_POST['action']=="save")
} }
$x++; $x++;
} }
}
} }
if($_GET['action']=="removementor") if($_GET['action']=="removementor")
{ {
if(registrationFormsReceived())
{
echo error(i18n("Cannot make changes to forms once they have been received by the fair"));
}
else
{
//first make sure this is one belonging to this registration id //first make sure this is one belonging to this registration id
$q=mysql_query("SELECT id FROM mentors WHERE id='".$_GET['removementor']."' AND registrations_id='".$_SESSION['registration_id']."'"); $q=mysql_query("SELECT id FROM mentors WHERE id='".$_GET['removementor']."' AND registrations_id='".$_SESSION['registration_id']."'");
if(mysql_num_rows($q)==1) if(mysql_num_rows($q)==1)
@ -98,6 +111,7 @@ if($_GET['action']=="removementor")
{ {
echo error(i18n("Invalid mentor to remove")); echo error(i18n("Invalid mentor to remove"));
} }
}
} }

View File

@ -47,6 +47,12 @@ echo mysql_error();
if($_POST['action']=="save") if($_POST['action']=="save")
{
if(registrationFormsReceived())
{
echo error(i18n("Cannot make changes to forms once they have been received by the fair"));
}
else
{ {
//first, lets make sure this project really does belong to them //first, lets make sure this project really does belong to them
$q=mysql_query("SELECT * FROM projects WHERE id='".$_POST['id']."' AND registrations_id='".$_SESSION['registration_id']."' AND year='".$config['FAIRYEAR']."'"); $q=mysql_query("SELECT * FROM projects WHERE id='".$_POST['id']."' AND registrations_id='".$_SESSION['registration_id']."' AND year='".$config['FAIRYEAR']."'");
@ -69,6 +75,7 @@ echo mysql_error();
echo error(i18n("Invalid project to update")); echo error(i18n("Invalid project to update"));
} }
} }
}
//now lets find out their MAX grade, so we can pre-set the Age Category //now lets find out their MAX grade, so we can pre-set the Age Category

View File

@ -38,6 +38,12 @@ echo mysql_error();
echo "<br />"; echo "<br />";
if($_POST['action']=="save") if($_POST['action']=="save")
{
if(registrationFormsReceived())
{
echo error(i18n("Cannot make changes to forms once they have been received by the fair"));
}
else
{ {
//first we will delete all their old answer, its easier to delete and re-insert in this case then it would be to find the corresponding answers and update them //first we will delete all their old answer, its easier to delete and re-insert in this case then it would be to find the corresponding answers and update them
mysql_query("DELETE FROM safety WHERE registrations_id='".$_SESSION['registration_id']."' AND year='".$config['FAIRYEAR']."'"); mysql_query("DELETE FROM safety WHERE registrations_id='".$_SESSION['registration_id']."' AND year='".$config['FAIRYEAR']."'");
@ -53,6 +59,8 @@ echo mysql_error();
} }
} }
}
//output the current status //output the current status

View File

@ -40,6 +40,12 @@ echo mysql_error();
if($_POST['action']=="save") if($_POST['action']=="save")
{ {
if(registrationFormsReceived())
{
echo error(i18n("Cannot make changes to forms once they have been received by the fair"));
}
else
{
$x=1; $x=1;
while($_POST["num"][$x]) while($_POST["num"][$x])
{ {
@ -99,11 +105,17 @@ if($_POST['action']=="save")
} }
$x++; $x++;
} }
}
} }
if($_GET['action']=="removestudent") if($_GET['action']=="removestudent")
{ {
if(registrationFormsReceived())
{
echo error(i18n("Cannot make changes to forms once they have been received by the fair"));
}
else
{
//first make sure this is one belonging to this registration id //first make sure this is one belonging to this registration id
$q=mysql_query("SELECT id FROM students WHERE id='".$_GET['removestudent']."' AND registrations_id='".$_SESSION['registration_id']."'"); $q=mysql_query("SELECT id FROM students WHERE id='".$_GET['removestudent']."' AND registrations_id='".$_SESSION['registration_id']."'");
if(mysql_num_rows($q)==1) if(mysql_num_rows($q)==1)
@ -123,6 +135,7 @@ if($_GET['action']=="removestudent")
{ {
echo error(i18n("Invalid student to remove")); echo error(i18n("Invalid student to remove"));
} }
}
} }

View File

@ -72,24 +72,27 @@ td {
} }
h1 { h1 {
font-size: 2.2em; font-size: 2.1em;
font-weight: bold; font-weight: bold;
margin-top: 0; margin-top: 0;
} }
h2 { h2 {
font-size: 1.8em; font-size: 1.6em;
font-weight: bold; font-weight: bold;
margin-top: 0; margin-top: 0;
margin-bottom: .3em;
} }
h3 { h3 {
font-size: 1.5em; font-size: 1.4em;
font-weight: bold; font-weight: bold;
margin-top: 0; margin-top: 0;
margin-bottom: .2em;
} }
h4 { h4 {
font-size: 1.3em; font-size: 1.2em;
font-weight: bold; font-weight: bold;
margin-top: 0; margin-top: 0;
margin-bottom: .1em;
} }
ul.mainnav { ul.mainnav {