function outputStatus($status)
{
$ret="";
switch($status)
{
case 'incomplete':
$ret.="
";
$ret.= i18n("Incomplete");
$ret.= "
";
break;
case 'complete':
$ret.= "";
$ret.= i18n("Complete");
$ret.= "
";
break;
case 'empty':
$ret.="";
$ret.= i18n("Empty");
$ret.= "
";
break;
default:
$ret.=i18n("Unknown");
break;
}
return $ret;
}
function studentStatus()
{
global $config;
$required_fields=array("firstname","lastname","address","city","postalcode","phone","email","grade");
$q=mysql_query("SELECT * FROM students WHERE registrations_id='".$_SESSION['registration_id']."' AND year='".$config['FAIRYEAR']."'");
//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";
}
function projectStatus()
{
global $config;
$required_fields=array("title","projectcategories_id","projectdivisions_id","summary","language","req_table","req_electricity");
$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";
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";
}
?>