Copyright (C) 2005 James Grant 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. */ ?> << ".i18n("Back to Participant Registration Summary")."
"; echo "
"; echo notice(i18n("Special award self-nomination is only available from %1 to %2. Please make sure you complete your nominations between these dates. You may apply to a maximum of %3 special awards.",array($config['dates']['specawardregopen'],$config['dates']['specawardregclose'],$config['maxspecialawardsperproject']))); $q=mysql_query("SELECT (NOW()>'".$config['dates']['specawardregopen']."' AND NOW()<'".$config['dates']['specawardregclose']."') AS datecheck"); $r=mysql_fetch_object($q); //this will return 1 if its between the dates, 0 otherwise. if($r->datecheck==1) $readonly=false; else $readonly=true; if($_POST['action']=="save") { //this will return 1 if its between the dates, 0 otherwise. if(!$readonly) { $num=count($_POST['spaward']); if($num>$config['maxspecialawardsperproject']) { echo error(i18n("You can only apply to %1 special awards. You have selected %2",array($config['maxspecialawardsperproject'],$num))); } else { mysql_query("DELETE FROM project_specialawards_link WHERE projects_id='$project->id' AND year='".$config['FAIRYEAR']."'"); foreach($_POST['spaward'] AS $spaward) { mysql_query("INSERT INTO project_specialawards_link (award_awards_id,projects_id,year) VALUES (". "'$spaward', ". "'$project->id', ". "'".$config['FAIRYEAR']."')"); echo mysql_error(); } if($num) echo happy(i18n("Successfully registered for %1 special awards",array($num))); } } else { echo error(i18n("Special award self-nomination is only available from %1 to %2",array($config['dates']['specawardregopen'],$config['dates']['specawardregclose']))); } } //output the current status $newstatus=spawardStatus(); if($newstatus!="complete") { echo error(i18n("Special Awards Self-Nomination Incomplete")); } else if($newstatus=="complete") { echo happy(i18n("Special Awards Self-Nomination Complete")); } echo "
\n"; echo "\n"; echo "\n"; $q=mysql_query("SELECT * FROM safety WHERE registrations_id='".$_SESSION['registration_id']."'"); while($r=mysql_fetch_object($q)) { $safetyanswers[$r->safetyquestions_id]=$r->answer; } $eligibleawards=getSpecialAwardsEligibleForProject($project->id); $nominatedawards=getSpecialAwardsNominatedForProject($project->id); /* echo "eligible awards
"; echo nl2br(print_r($eligibleawards,true)); echo "nominated awards
"; echo nl2br(print_r($nominatedawards,true)); */ $nominatedawards_list=array(); foreach($nominatedawards AS $naward) { $nominatedawards_list[]=$naward['id']; } echo "
"; foreach($eligibleawards AS $eaward) { echo ""; echo ""; } echo "
"; if(in_array($eaward['id'],$nominatedawards_list)) $ch="checked=\"checked\""; else $ch=""; echo ""; echo ""; echo "".$eaward['name'].""; echo "
"; echo $eaward['criteria']; echo "

"; echo "
"; if(!$readonly) echo "\n"; echo "
"; send_footer(); ?>