From 40789fc92c1d7d8db98a1df66837501ee90b83bf Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 25 Sep 2009 07:11:43 +0000 Subject: [PATCH] - remove the download all link.. for now, upload all as well. - support the new 2 fields downloading awards - send the download output into a div ont he same screen, rather than on a whole new screen. --- admin/award_download.php | 127 +++++++++++++++++++++------------------ admin/award_upload.php | 3 +- 2 files changed, 72 insertions(+), 58 deletions(-) diff --git a/admin/award_download.php b/admin/award_download.php index 56a0c878..ced549a0 100644 --- a/admin/award_download.php +++ b/admin/award_download.php @@ -26,15 +26,11 @@ user_auth_required('committee', 'admin'); require_once('curl.inc.php'); - send_header("Download Awards", - array('Committee Main' => 'committee_main.php', - 'Administration' => 'admin/index.php', - 'Awards Main' => 'admin/awards.php' )); - function check_source($source) - { - global $config; - $q=mysql_query("SELECT * FROM fairs WHERE id='$source'"); +switch($_GET['action']) { +case 'check': + $fairs_id = intval($_GET['fairs_id']); + $q=mysql_query("SELECT * FROM fairs WHERE id='$fairs_id'"); $fair=mysql_fetch_assoc($q); if(!($fair['username'] && $fair['password'])) { echo error(i18n("Username and Password are not set for source '%1'. Please set them in the SFIAB Configuration/External Award Sources editor first",array($r->name))); @@ -73,7 +69,7 @@ } //get a list of all the existing awards for this external source - $aq=mysql_query("SELECT * FROM award_awards WHERE award_source_fairs_id='$source' AND year='{$config['FAIRYEAR']}'"); + $aq=mysql_query("SELECT * FROM award_awards WHERE award_source_fairs_id='$fairs_id' AND year='{$config['FAIRYEAR']}'"); $existingawards=array(); while($ar=mysql_fetch_object($aq)) { $existingawards[$ar->id] = true; @@ -108,7 +104,7 @@ $tq=mysql_query("SELECT * FROM award_awards WHERE external_identifier='$identifier' AND - award_source_fairs_id='$source' AND + award_source_fairs_id='$fairs_id' AND year='$year'"); if(mysql_num_rows($tq) == 0) { /* Award doesn't exist, create it, then update it with the common code below */ @@ -117,7 +113,7 @@ award_source_fairs_id) VALUES (2,'{$year}', '".mysql_escape_string($identifier)."', - '$source')"); + '$fairs_id')"); $award_id=mysql_insert_id(); } else { echo i18n("Award already exists, updating info")."
"; @@ -139,11 +135,14 @@ $sponsor_id=mysql_insert_id(); } + mysql_query("UPDATE award_awards SET sponsors_id='$sponsor_id', name='".mysql_escape_string($award['name_en'])."', criteria='".mysql_escape_string($award['criteria_en'])."', - external_postback='".mysql_escape_string($postback)."' + external_postback='".mysql_escape_string($postback)."', + external_register_winners='".(($award['external_register_winners']==1)?1:0)."', + external_additional_materials='".(($award['external_additional_materials']==1)?1:0)."' WHERE id='$award_id' AND external_identifier='".mysql_escape_string($identifier)."' @@ -215,52 +214,66 @@ } echo ""; + exit; +} + +send_header("Download Awards", + array('Committee Main' => 'committee_main.php', + 'Administration' => 'admin/index.php', + 'Awards Main' => 'admin/awards.php' )); + +?> + + + + + + + + +"; + echo "\n"; + echo ""; + echo ""; + echo ""; +// $checkurl.="&check[]={$r->id}"; } +/* + if($links) + echo "".i18n("Check all sources").""; +*/ +?> +
{$r->name}{$r->url}"; + if($links) + echo "id})\">".i18n("check").""; + else + echo "n/a"; + echo "
+
+
- if($_GET['action']=="check") { - if(count($_GET['check'])) { - foreach($_GET['check'] AS $checksource) { - check_source(intval($checksource)); - echo "
"; - } - } else { - echo error(i18n("No sources available to check")); - } - } else { - - if(!function_exists('curl_init')) { - echo error(i18n("CURL Support Missing")); - echo notice(i18n("Your PHP installation does not support CURL. You will need to have CURL support added by your system administrator before being able to access external award sources")); - $links=false; - } else { - $links=true; - } - - $q=mysql_query("SELECT * FROM fairs WHERE enable_awards='yes' ORDER BY name"); - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - while($r=mysql_fetch_object($q)) { - echo ""; - echo "\n"; - echo ""; - echo ""; - echo ""; - $checkurl.="&check[]={$r->id}"; - } - echo "
".i18n("Source Name")."".i18n("Source Location URL")."".i18n("Check")."
{$r->name}{$r->url}"; - if($links) - echo "id}\">".i18n("check").""; - else - echo "n/a"; - echo "
\n"; - echo "
"; - - if($links) - echo "".i18n("Check all sources").""; - - } + diff --git a/admin/award_upload.php b/admin/award_upload.php index a64f9ac9..1a204978 100644 --- a/admin/award_upload.php +++ b/admin/award_upload.php @@ -505,8 +505,9 @@ while($r=mysql_fetch_object($q)) {
- +
"> */ send_footer(); ?>