From b7e72aa40cc4ddbce3a5ed8ea29bb395af85e3ea Mon Sep 17 00:00:00 2001 From: james Date: Thu, 23 Oct 2008 21:33:06 +0000 Subject: [PATCH] This file was renamed in the last commit --- admin/award_sponsors.php | 195 --------------------------------------- 1 file changed, 195 deletions(-) delete mode 100644 admin/award_sponsors.php diff --git a/admin/award_sponsors.php b/admin/award_sponsors.php deleted file mode 100644 index 99fd7af..0000000 --- a/admin/award_sponsors.php +++ /dev/null @@ -1,195 +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') - ); - - if($_POST['save']=="edit" || $_POST['save']=="add") - { - if($_POST['save']=="add") - { - $q=mysql_query("INSERT INTO award_sponsors (year) VALUES ('".$config['FAIRYEAR']."')"); - $id=mysql_insert_id(); - } - else - $id=$_POST['id']; - - - $exec="UPDATE award_sponsors SET ". - "organization='".mysql_escape_string(stripslashes($_POST['organization']))."', ". - "address='".mysql_escape_string(stripslashes($_POST['address']))."', ". - "city='".mysql_escape_string(stripslashes($_POST['city']))."', ". - "province_code='".mysql_escape_string(stripslashes($_POST['province_code']))."', ". - "postalcode='".mysql_escape_string(stripslashes($_POST['postalcode']))."', ". - "phone='".mysql_escape_string(stripslashes($_POST['phone']))."', ". - "fax='".mysql_escape_string(stripslashes($_POST['fax']))."', ". - "email='".mysql_escape_string(stripslashes($_POST['email']))."', ". - "notes='".mysql_escape_string(stripslashes($_POST['notes']))."' ". - "WHERE id='$id'"; - mysql_query($exec); - - if($_POST['save']=="add") - echo happy("Sponsor successfully added"); - else - echo happy("Successfully saved changes to sponsor"); - } - - if($_GET['action']=="delete" && $_GET['delete']) - { - mysql_query("DELETE FROM award_sponsors WHERE id='".$_GET['delete']."'"); - echo happy("Sponsor successfully deleted"); - } - - if($_GET['action']=="confirm" && $_GET['confirm']) - { - mysql_query("UPDATE award_sponsors SET confirmed='yes' WHERE id='".$_GET['confirm']."'"); - echo happy("Sponsor successfully confirmed"); - - } - if($_GET['action']=="unconfirm" && $_GET['unconfirm']) - { - mysql_query("UPDATE award_sponsors SET confirmed='no' WHERE id='".$_GET['unconfirm']."'"); - echo happy("Sponsor successfully unconfirmed"); - } - - if($_GET['action']=="edit" || $_GET['action']=="add") - { - - echo "<< ".i18n("Back to Award Sponsors")."\n"; - if($_GET['action']=="edit") - { - echo "

".i18n("Edit Award Sponsor")."

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

".i18n("Add New Award Sponsor")."

\n"; - $buttontext="Add Sponsor"; - } - $buttontext=i18n($buttontext); - - 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 "\n"; - echo "\n"; - echo "\n"; - echo "\n"; - - echo "
".i18n("Organization Name")."organization)."\" size=\"60\" maxlength=\"128\" />
".i18n("Address")."address)."\" size=\"60\" maxlength=\"64\" />
".i18n("City")."city)."\" size=\"32\" maxlength=\"32\" />
".i18n($config['provincestate']).""; - emit_province_selector("province_code",$r->province_code); - echo "
".i18n($config['postalzip'])."postalcode\" size=\"8\" maxlength=\"7\" />
".i18n("Phone")."phone)."\" size=\"16\" maxlength=\"32\" />
".i18n("Fax")."fax)."\" size=\"16\" maxlength=\"32\" />
".i18n("Email")."email)."\" size=\"60\" maxlength=\"128\" />
".i18n("Notes")."
\n"; - echo "
\n"; - - - - } - else - { - - - echo "
"; - echo "Add New Sponsor\n"; - echo "
"; - echo ""; - echo ""; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo "\n"; - - //$q=mysql_query("SELECT * FROM award_sponsors WHERE year='".$config['FAIRYEAR']."' ORDER BY organization"); - //we want to show all years, infact that year field probably shouldnt even be there. - $q=mysql_query("SELECT * FROM award_sponsors ORDER BY organization"); - while($r=mysql_fetch_object($q)) - { - echo "\n"; - echo "\n"; - echo " \n"; - - $numq=mysql_query("SELECT COUNT(id) AS num FROM award_awards WHERE year='".$config['FAIRYEAR']."' AND award_sponsors_id='$r->id'"); - $numr=mysql_fetch_object($numq); - $numawards=$numr->num; - - $numq=mysql_query("SELECT COUNT(id) AS num FROM award_contacts WHERE year='".$config['FAIRYEAR']."' AND award_sponsors_id='$r->id'"); - $numr=mysql_fetch_object($numq); - $numcontacts=$numr->num; - - - echo " "; - echo " "; - echo " \n"; - echo "\n"; - } - - echo "
Confirmed?Organization# of Awards# of ContactsAction
\n"; - if($r->confirmed=='yes') - { - echo "id\">\"ok_alt\"\n"; - } - else - { - echo "id\">confirm"; - } - echo "$r->organization"; - echo "$numawards  "; - echo "id\">\"view\""; - echo ""; - echo "$numcontacts  "; - echo "id\">\"view\""; - echo ""; - echo "id\">"; - echo " "; - echo "id\">"; - - - echo "
\n"; - - - } - - send_footer(); - -?>