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' ));
+
+?>
+
+
+
+
+
+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;
+}
+
+?>
+
+=i18n("Source Name")?> |
+=i18n("Source Location URL")?> |
+=i18n("Check")?> |
+
+
+
+$q=mysql_query("SELECT * FROM fairs WHERE enable_awards='yes' ORDER BY name");
+while($r=mysql_fetch_object($q)) {
+ echo "";
+ echo "{$r->name} | \n";
+ echo "{$r->url} | ";
+ echo "";
+ if($links)
+ echo "id})\">".i18n("check")."";
+ else
+ echo "n/a";
+ echo " | ";
+ echo "
";
+// $checkurl.="&check[]={$r->id}";
}
+/*
+ if($links)
+ echo "".i18n("Check all sources")."";
+*/
+?>
+
+
+
- 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 "".i18n("Source Name")." | ";
- echo "".i18n("Source Location URL")." | ";
- echo "".i18n("Check")." | ";
- echo "
";
- while($r=mysql_fetch_object($q)) {
- echo "";
- echo "{$r->name} | \n";
- echo "{$r->url} | ";
- echo "";
- if($links)
- echo "id}\">".i18n("check")."";
- else
- echo "n/a";
- echo " | ";
- echo "
";
- $checkurl.="&check[]={$r->id}";
- }
- echo "
\n";
- echo "
";
-
- if($links)
- echo "".i18n("Check all sources")."";
-
- }
+
send_footer();
?>
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)) {
-=i18n("Send all awards")?>
+
+/*=i18n("Send all awards")?> */
send_footer();
?>