2004-12-02 19:40:43 +00:00
< ?
2004-12-07 14:20:42 +00:00
2004-12-02 19:40:43 +00:00
function studentStatus ()
{
2004-12-02 23:15:42 +00:00
global $config ;
2004-12-08 20:18:36 +00:00
$required_fields = array ( " firstname " , " lastname " , " address " , " city " , " postalcode " , " phone " , " email " , " grade " , " dateofbirth " , " schools_id " , " tshirt " );
2004-12-02 19:40:43 +00:00
2004-12-02 23:15:42 +00:00
$q = mysql_query ( " SELECT * FROM students WHERE registrations_id=' " . $_SESSION [ 'registration_id' ] . " ' AND year=' " . $config [ 'FAIRYEAR' ] . " ' " );
2004-12-02 19:40:43 +00:00
2004-12-07 14:20:42 +00:00
//if we dont have the minimum, return incomplete
if ( mysql_num_rows ( $q ) < $config [ 'minstudentsperproject' ])
return " incomplete " ;
while ( $r = mysql_fetch_object ( $q ))
{
foreach ( $required_fields AS $req )
{
if ( ! $r -> $req )
{
return " incomplete " ;
}
}
}
//if it made it through without returning incomplete, then we must be complete
return " complete " ;
}
2005-01-05 15:05:32 +00:00
function emergencycontactStatus ()
{
global $config ;
$required_fields = array ( " firstname " , " lastname " , " relation " , " phone1 " );
$sq = mysql_query ( " SELECT id FROM students WHERE registrations_id=' " . $_SESSION [ 'registration_id' ] . " ' AND year=' " . $config [ 'FAIRYEAR' ] . " ' " );
$numstudents = mysql_num_rows ( $sq );
while ( $sr = mysql_fetch_object ( $sq ))
{
$q = mysql_query ( " SELECT * FROM emergencycontact WHERE registrations_id=' " . $_SESSION [ 'registration_id' ] . " ' AND year=' " . $config [ 'FAIRYEAR' ] . " ' AND students_id=' $sr->id ' " );
$r = mysql_fetch_object ( $q );
foreach ( $required_fields AS $req )
{
if ( ! $r -> $req )
{
return " incomplete " ;
}
}
}
//if it made it through without returning incomplete, then we must be complete
return " complete " ;
}
2004-12-07 14:20:42 +00:00
function projectStatus ()
{
global $config ;
2004-12-07 16:21:07 +00:00
$required_fields = array ( " title " , " projectcategories_id " , " projectdivisions_id " , " summary " , " language " , " req_table " , " req_electricity " );
2004-12-07 14:20:42 +00:00
$q = mysql_query ( " SELECT * FROM projects WHERE registrations_id=' " . $_SESSION [ 'registration_id' ] . " ' AND year=' " . $config [ 'FAIRYEAR' ] . " ' " );
//if we dont have a project entry yet, return empty
if ( ! mysql_num_rows ( $q ))
return " empty " ;
2004-12-02 19:40:43 +00:00
while ( $r = mysql_fetch_object ( $q ))
{
foreach ( $required_fields AS $req )
{
2004-12-03 15:38:37 +00:00
if ( ! $r -> $req )
2004-12-02 19:40:43 +00:00
{
return " incomplete " ;
}
}
}
//if it made it through without returning incomplete, then we must be complete
return " complete " ;
}
2004-12-10 19:59:18 +00:00
function mentorStatus ()
{
global $config ;
$required_fields = array ( " firstname " , " lastname " , " phone " , " email " , " organization " , " description " );
//first check the registrations table to see if 'nummentors' is set, or if its null
$q = mysql_query ( " SELECT nummentors FROM registrations WHERE id=' " . $_SESSION [ 'registration_id' ] . " ' AND year=' " . $config [ 'FAIRYEAR' ] . " ' " );
$r = mysql_fetch_object ( $q );
if ( $r -> nummentors == null )
return " incomplete " ;
$q = mysql_query ( " SELECT * FROM mentors WHERE registrations_id=' " . $_SESSION [ 'registration_id' ] . " ' AND year=' " . $config [ 'FAIRYEAR' ] . " ' " );
//if we dont have the minimum, return incomplete
if ( mysql_num_rows ( $q ) < $config [ 'minmentorserproject' ])
return " incomplete " ;
while ( $r = mysql_fetch_object ( $q ))
{
foreach ( $required_fields AS $req )
{
if ( ! $r -> $req )
{
return " incomplete " ;
}
}
}
//if it made it through without returning incomplete, then we must be complete
return " complete " ;
}
2004-12-10 20:38:16 +00:00
function safetyStatus ()
{
2004-12-10 21:39:47 +00:00
//grab all of their answers
$q = mysql_query ( " SELECT * FROM safety WHERE registrations_id=' " . $_SESSION [ 'registration_id' ] . " ' " );
while ( $r = mysql_fetch_object ( $q ))
{
$safetyanswers [ $r -> safetyquestions_id ] = $r -> answer ;
}
//now grab all the questions
$q = mysql_query ( " SELECT * FROM safetyquestions ORDER BY ord " );
while ( $r = mysql_fetch_object ( $q ))
{
2004-12-10 21:40:31 +00:00
if ( $r -> required == " yes " && ! $safetyanswers [ $r -> id ])
2004-12-10 21:39:47 +00:00
{
return " incomplete " ;
}
}
return " complete " ;
2004-12-10 20:38:16 +00:00
}
2004-12-10 19:59:18 +00:00
2004-12-02 19:40:43 +00:00
?>