diff --git a/admin/award_prizes.php b/admin/award_prizes.php deleted file mode 100644 index 0d0ff215..00000000 --- a/admin/award_prizes.php +++ /dev/null @@ -1,250 +0,0 @@ - - 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. -*/ -?> - 'committee_main.php', - 'Administration' => 'admin/index.php', - 'Awards Main' => 'admin/awards.php', - 'Awards Management' => 'admin/award_awards.php') - ); - - if($_GET['award_awards_id']) - $award_awards_id=$_GET['award_awards_id']; - else if($_POST['award_awards_id']) - $award_awards_id=$_POST['award_awards_id']; -?> - -name="Generic Prize Template"; - } - else - { - $q=mysql_query("SELECT * FROM award_awards WHERE id='".$award_awards_id."'"); - $award=mysql_fetch_object($q); - } - - if($_POST['save']=="edit" || $_POST['save']=="add") - { - if($_POST['save']=="add") - { - if($award_awards_id==-1) - $q=mysql_query("INSERT INTO award_prizes (award_awards_id,year) VALUES ('0','-1')"); - else - $q=mysql_query("INSERT INTO award_prizes (award_awards_id,year) VALUES ('$award_awards_id','".$config['FAIRYEAR']."')"); - - $id=mysql_insert_id(); - } - else - $id=$_POST['id']; - - - $exec="UPDATE award_prizes SET ". - "prize='".mysql_escape_string(stripslashes($_POST['prize']))."', ". - "cash='".mysql_escape_string(stripslashes($_POST['cash']))."', ". - "scholarship='".mysql_escape_string(stripslashes($_POST['scholarship']))."', ". - "value='".mysql_escape_string(stripslashes($_POST['value']))."', ". - "number='".mysql_escape_string(stripslashes($_POST['number']))."', ". - "excludefromac='".mysql_escape_string(stripslashes($_POST['excludefromac']))."', ". - "trophystudentkeeper='".mysql_escape_string(stripslashes($_POST['trophystudentkeeper']))."', ". - "trophystudentreturn='".mysql_escape_string(stripslashes($_POST['trophystudentreturn']))."', ". - "trophyschoolkeeper='".mysql_escape_string(stripslashes($_POST['trophyschoolkeeper']))."', ". - "trophyschoolreturn='".mysql_escape_string(stripslashes($_POST['trophyschoolreturn']))."', ". - "`order`='".mysql_escape_string(stripslashes($_POST['order']))."' ". - "WHERE id='$id'"; - mysql_query($exec); - - if($_POST['save']=="add") - echo happy("Prize successfully added"); - else - echo happy("Successfully saved changes to prize"); - } - - if($_POST['action']=="reorder") - { - if(is_array($_POST['reorder'])) - { - foreach($_POST['reorder'] AS $key=>$val) - { - mysql_query("UPDATE award_prizes SET `order`='$val' WHERE id='$key'"); - } - echo happy("Award Prizes successfully reordered"); - } - } - - - if($_GET['action']=="delete" && $_GET['delete']) - { - mysql_query("DELETE FROM award_prizes WHERE id='".$_GET['delete']."'"); - echo happy("Contact successfully deleted"); - } - - if($_GET['action']=="edit" || $_GET['action']=="add") - { - - echo "<< ".i18n("Back to Prizes for %1",array($award->name))."\n"; - echo "
"; - echo "
"; - if($_GET['action']=="edit") - { - echo "

".i18n("Edit Prize for %1",array($award->name))."

\n"; - $buttontext="Save Prize"; - $q=mysql_query("SELECT * FROM award_prizes WHERE id='".$_GET['edit']."'"); - $r=mysql_fetch_object($q); - } - else if($_GET['action']=="add") - { - echo "

".i18n("Add Prize for %1",array($award->name))."

\n"; - $buttontext="Add Prize"; - } - $buttontext=i18n($buttontext); - - echo "
\n"; - echo "\n"; - echo "\n"; - - if($_GET['action']=="edit") - echo "\n"; - - echo "\n"; - echo "\n"; - echo "\n"; - echo "\n"; - echo "\n"; - echo "\n"; - echo "\n"; - echo ""; - echo ""; - echo ""; - echo ""; - - echo ""; - - echo "\n"; - - echo "
".i18n("Prize Description")."
(".i18n("If non cash/scholarship").")
prize)."\" size=\"40\" maxlength=\"128\" />
".i18n("Cash Amount")."\$cash)."\" size=\"10\" maxlength=\"10\" />
".i18n("Scholarship Amount")."\$scholarship)."\" size=\"10\" maxlength=\"10\" />
".i18n("Prize Value")."\$value)."\" size=\"10\" maxlength=\"10\" />
".i18n("Number available")."number)."\" size=\"3\" maxlength=\"5\" />
".i18n("Order")."order)."\" size=\"3\" maxlength=\"5\" />
".i18n("Plaque/Trophy").""; - if($r->trophystudentkeeper==1) $ch="checked=\"checked\""; else $ch=""; - echo "".i18n("Student(s) keeper trophy")."
"; - if($r->trophystudentreturn==1) $ch="checked=\"checked\""; else $ch=""; - echo "".i18n("Student(s) annual return/reuse trophy")."
"; - if($r->trophyschoolkeeper==1) $ch="checked=\"checked\""; else $ch=""; - echo "".i18n("School keeper trophy")."
"; - if($r->trophyschoolreturn==1) $ch="checked=\"checked\""; else $ch=""; - echo "".i18n("School annual return/reuse trophy")."
".i18n("Awards Ceremony").""; - if($r->excludefromac==1) $ch="checked=\"checked\""; else $ch=""; - echo "".i18n("Exclude this prize from the award ceremony script")."
\n"; - echo "
\n"; - } - else - { - - echo "
"; - echo "".i18n("Add New Prize to %1",array($award->name))."\n"; - echo "
"; - - if($award_awards_id==-1) - { - $q=mysql_query("SELECT * FROM award_prizes WHERE year='-1' AND award_awards_id='0' ORDER BY `order`"); - - } - else - { - $q=mysql_query("SELECT * FROM award_prizes WHERE year='".$config['FAIRYEAR']."' AND award_awards_id='$award_awards_id' ORDER BY `order`"); - } - - if(mysql_num_rows($q)) - { - echo "
"; - echo ""; - echo ""; - - echo ""; - echo ""; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo "\n"; - - - $hasexternal=false; - while($r=mysql_fetch_object($q)) - { - if($r->external_identifier){ $cl="class=\"externalaward\""; $hasexternal=true; } else $cl=""; - echo "\n"; - echo " \n"; - echo " \n"; - echo " "; - echo " "; - echo " "; - echo " \n"; - echo " \n"; - echo "\n"; - } - if($hasexternal) - echo ""; - - echo "
".i18n("Order")."".i18n("Prize Description")."".i18n("Cash")."".i18n("Scholarship")."".i18n("Value")."".i18n("# Available")."Actions
id]\" value=\"$r->order\" size=\"3\" />$r->prize"; - if($r->cash) echo "\$$r->cash"; - else echo " "; - echo " "; - if($r->scholarship) echo "\$$r->scholarship"; - else echo " "; - echo " "; - if($r->value) echo "\$$r->value"; - else echo " "; - echo " $r->number"; - echo "id\">"; - echo " "; - echo "id\">"; - - - echo "
".i18n("Indicates prize imported from an external source")."
\n"; - echo ""; - echo "
"; - } - - } - - - } - else - { - echo error(i18n("No Award ID specified")); - echo "".i18n("Choose an award").""; - } - - send_footer(); - -?>