diff --git a/admin/award_awards.php b/admin/award_awards.php
index 0adaf410..5ed257ab 100644
--- a/admin/award_awards.php
+++ b/admin/award_awards.php
@@ -27,333 +27,364 @@
user_auth_required('committee', 'admin');
require_once('awards.inc.php');
- switch(get_value_from_array($_GET, 'action')) {
-
- case 'awardinfo_load':
- $id = intval(get_value_from_array($_GET, 'id'));
- $q = $pdo->prepare("SELECT * FROM award_awards WHERE id='$id'");
- $q->execute();
- $ret = $q->fetch(PDO::FETCH_ASSOC);
+ $_GET['action'] = $_GET['action'] ?? '';
- //json_encode NEEDS UTF8 DATA, but we store it in the database as ISO :(
- foreach($ret AS $k=>$v) {print('sdfs');
- $ret[$k]=iconv("ISO-8859-1","UTF-8",$v);
- }
- //echo iconv("ISO-8859-1","UTF-8",json_encode($ret));
- echo json_encode($ret);
- exit;
- case 'award_delete':
- $id=intval($_GET['id']);
- award_delete($id);
- exit;
-
- case 'awardinfo_save':
- /* Scrub the data while we save it */
- $id=intval($_POST['id']);
-
- if($id == -1) {
+ switch($_GET['action']) {
- $q = $pdo->prepare("INSERT INTO award_awards (year,self_nominate,schedule_judges)
- VALUES ('{$config['FAIRYEAR']}','yes','yes')");
+ case 'awardinfo_load':
+ $id = intval(get_value_from_array($_GET, 'id'));
+ $q = $pdo->prepare("SELECT * FROM award_awards WHERE id='$id'");
+ $q->execute();
+ $ret = $q->fetch(PDO::FETCH_ASSOC);
+
+ //json_encode NEEDS UTF8 DATA, but we store it in the database as ISO :(
+ foreach($ret AS $k=>$v) {print('sdfs');
+ $ret[$k]=iconv("ISO-8859-1","UTF-8",$v);
+ }
+ //echo iconv("ISO-8859-1","UTF-8",json_encode($ret));
+ echo json_encode($ret);
+ exit;
+
+ case 'award_delete':
+ $id=intval($_GET['id']);
+ award_delete($id);
+ exit;
+
+ case 'awardinfo_save':
+ /* Scrub the data while we save it */
+ $id=intval($_POST['id']);
+
+ if($id == -1) {
+
+ $q = $pdo->prepare("INSERT INTO award_awards (year,self_nominate,schedule_judges)
+ VALUES ('{$config['FAIRYEAR']}','yes','yes')");
+ $q->execute();
+ $id = $pdo->lastInsertId();
+ happy_("Award Created");
+ /* Set the award_id in the client */
+ echo "";
+ }
+
+ $q = "UPDATE award_awards SET
+ award_types_id='".intval($_POST['award_types_id'])."',
+ presenter='".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['presenter']))."',
+ excludefromac='".(($_POST['excludefromac'] == 1) ? 1 : 0)."',
+ cwsfaward='".(($_POST['cwsfaward'] == 1) ? 1 : 0)."',
+ self_nominate='".(($_POST['self_nominate'] == 'yes') ? 'yes' : 'no')."',
+ schedule_judges='".(($_POST['schedule_judges'] == 'yes') ? 'yes' : 'no')."',
+ description='".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['description']))."' ";
+
+ if(array_key_exists('name', $_POST)) {
+ /* These values may be disabled, if they name key exists, assume
+ * they aren't disabled and save them too */
+ $q .= ",name='".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['name']))."',
+ criteria='".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['criteria']))."',
+ sponsors_id='".intval($_POST['sponsors_id'])."' ";
+ }
+ $q .= "WHERE id='$id'";
+ $q = $pdo->prepare($q);
$q->execute();
- $id = $pdo->lastInsertId();
- happy_("Award Created");
- /* Set the award_id in the client */
- echo "";
- }
+ print_r($_POST);
+ echo $q;
+ show_pdo_errors_if_any($pdo);
+ happy_("Award information saved");
+ exit;
- $q = "UPDATE award_awards SET
- award_types_id='".intval($_POST['award_types_id'])."',
- presenter='".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['presenter']))."',
- excludefromac='".(($_POST['excludefromac'] == 1) ? 1 : 0)."',
- cwsfaward='".(($_POST['cwsfaward'] == 1) ? 1 : 0)."',
- self_nominate='".(($_POST['self_nominate'] == 'yes') ? 'yes' : 'no')."',
- schedule_judges='".(($_POST['schedule_judges'] == 'yes') ? 'yes' : 'no')."',
- description='".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['description']))."' ";
+ case 'eligibility_load':
+ $id = intval($_GET['id']);
+ //select the current categories that this award is linked to
+ $ret = array('categories'=>array(), 'divisions'=>array() );
+
+ $q=$pdo->prepare("SELECT * FROM award_awards_projectcategories WHERE award_awards_id='$id'");
+ $q->execute();
+ while($r=$q->fetch(PDO::FETCH_ASSOC)) {
+ $ret['categories'][] = $r['projectcategories_id'];
+ }
- if(array_key_exists('name', $_POST)) {
- /* These values may be disabled, if they name key exists, assume
- * they aren't disabled and save them too */
- $q .= ",name='".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['name']))."',
- criteria='".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['criteria']))."',
- sponsors_id='".intval($_POST['sponsors_id'])."' ";
- }
- $q .= "WHERE id='$id'";
- $q = $pdo->prepare($q);
- $q->execute();
- print_r($_POST);
- echo $q;
- show_pdo_errors_if_any($pdo);
- happy_("Award information saved");
- exit;
+ //select the current categories that this award is linked to
+ $q = $pdo->$prepare("SELECT * FROM award_awards_projectdivisions WHERE award_awards_id='$id'");
+ $q->execute();
+ while($r=$q->fetch(PDO::FETCH_ASSOC)) {
+ $ret['divisions'][] = $r['projectdivisions_id'];
+ }
+ echo json_encode($ret);
+ exit;
- case 'eligibility_load':
- $id = intval($_GET['id']);
- //select the current categories that this award is linked to
- $ret = array('categories'=>array(), 'divisions'=>array() );
-
- $q=$pdo->prepare("SELECT * FROM award_awards_projectcategories WHERE award_awards_id='$id'");
- $q->execute();
- while($r=$q->fetch(PDO::FETCH_ASSOC)) {
- $ret['categories'][] = $r['projectcategories_id'];
- }
+ case 'eligibility_save':
+ $id = intval($_POST['award_awards_id']);
- //select the current categories that this award is linked to
- $q = $pdo->$prepare("SELECT * FROM award_awards_projectdivisions WHERE award_awards_id='$id'");
- $q->execute();
- while($r=$q->fetch(PDO::FETCH_ASSOC)) {
- $ret['divisions'][] = $r['projectdivisions_id'];
- }
- echo json_encode($ret);
- exit;
+ //now add the new ones
+ if(!is_array($_POST['categories']) || !is_array($_POST['divisions'])) {
+ error_("Invalid data");
+ exit;
+ }
- case 'eligibility_save':
- $id = intval($_POST['award_awards_id']);
+ //wipe out any old award-category links
+ $q = $pdo->prepare("DELETE FROM award_awards_projectcategories WHERE award_awards_id='$id'");
+ $q->execute();
+ foreach($_POST['categories'] AS $key=>$cat) {
+ $c = intval($cat);
+ $q = $pdo->prepare("INSERT INTO award_awards_projectcategories (award_awards_id, projectcategories_id, year)
+ VALUES (:id, :c, :year)");
- //now add the new ones
- if(!is_array($_POST['categories']) || !is_array($_POST['divisions'])) {
- error_("Invalid data");
+ $q->bindParam(':id', $id, PDO::PARAM_INT);
+ $q->bindParam(':c', $c, PDO::PARAM_INT);
+ $q->bindParam(':year', $config['FAIRYEAR'], PDO::PARAM_INT);
+
+ $q->execute();
+ }
+
+ //wipe out any old award-divisions links
+
+ $q = $pdo->prepare("DELETE FROM award_awards_projectdivisions WHERE award_awards_id='$id'");
+ $q->execute();
+
+ //now add the new ones
+ foreach($_POST['divisions'] AS $key=>$div) {
+ $d = intval($div);
+
+ $q = $pdo->prepare("INSERT INTO award_awards_projectdivisions (award_awards_id, projectdivisions_id, year)
+ VALUES (:id, :d, :year)");
+
+ $q->bindParam(':id', $id, PDO::PARAM_INT);
+ $q->bindParam(':d', $d, PDO::PARAM_INT);
+ $q->bindParam(':year', $config['FAIRYEAR'], PDO::PARAM_INT);
+
+
+ $q->execute();
+ show_pdo_errors_if_any($pdo);
+ }
+ happy_("Eligibility information saved");
+ exit;
+
+ case 'prize_order':
+ $order = 0;
+ foreach ($_GET['prizelist'] as $position=>$id) {
+ if($id == '') continue;
+ $order++;
+
+ $q = $pdo->prepare("UPDATE `award_prizes` SET `order`='$order' WHERE `id`='$id'");
+ $q->execute(); }
+ // print_r($_GET);
+ happy_("Order Updated.");
+ exit;
+
+ case 'award_order':
+ $order = 0;
+ foreach ($_GET['awardlist'] as $position=>$id) {
+ if($id == '') continue;
+ $order++;
+
+ $q = $pdo->prepare("UPDATE `award_awards` SET `order`='$order' WHERE `id`='$id'");
+ $q->execute();
+ }
+ happy_("Order updated");
+ exit;
+
+ case 'prizeinfo_load':
+ $id = intval($_GET['id']);
+ if($id == -1) {
+
+ $q = $pdo->prepare("SELECT * FROM award_prizes WHERE year='-1' AND award_awards_id='0' ORDER BY `order`");
+ $q->execute();
+ } else {
+
+ $q = $pdo->prepare("SELECT * FROM award_prizes WHERE award_awards_id='$id' ORDER BY `order`");
+ $q->execute();
+ }
+ while($r=$q->fetch(PDO::FETCH_ASSOC)) {
+ foreach($r AS $k=>$v) {
+ $r[$k]=iconv("ISO-8859-1","UTF-8",$v);
+ }
+ $ret[] = $r;
+ }
+ echo json_encode($ret);
+ exit;
+ case 'prize_load':
+ $id = intval($_GET['id']);
+
+ $q = $pdo->prepare("SELECT * FROM award_prizes WHERE id='$id'");
+ $q->execute();
+ $ret = $q->fetch(PDO::FETCH_ASSOC);
+ foreach($ret AS $k=>$v) {
+ $ret[$k]=iconv("ISO-8859-1","UTF-8",$v);
+ }
+ echo json_encode($ret);
+ exit;
+
+ case 'prize_create':
+ $aaid = intval($_GET['award_awards_id']);
+ $year = $config['FAIRYEAR'];
+ if($aaid == -1) {
+ $aaid = 0;
+ $year = -1;
+ }
+
+ $q = $pdo->prepare("INSERT INTO award_prizes (award_awards_id, year) VALUES (:aaid, :year)");
+
+ $q->bindParam(':aaid', $aaid, PDO::PARAM_INT);
+ $q->bindParam(':year', $year, PDO::PARAM_INT);
+
+ $q->execute();
+
+ $ret = array('id' => $pdo->lastInsertId() );
+ echo json_encode($ret);
+ exit;
+
+ case 'prize_save':
+ $id = intval($_POST['id']);
+
+ $q = $pdo->prepare("UPDATE award_prizes SET
+ prize = :prize,
+ cash = :cash,
+ scholarship = :scholarship,
+ value = :value,
+ number = :number,
+ excludefromac = :excludefromac,
+ trophystudentkeeper = :trophystudentkeeper,
+ trophystudentreturn = :trophystudentreturn,
+ trophyschoolkeeper = :trophyschoolkeeper,
+ trophyschoolreturn = :trophyschoolreturn
+ WHERE id = :id");
+
+ $q->bindParam(':prize', stripslashes(iconv("UTF-8", "ISO-8859-1", $_POST['prize'])), PDO::PARAM_STR);
+ $q->bindParam(':cash', intval($_POST['cash']), PDO::PARAM_INT);
+ $q->bindParam(':scholarship', intval($_POST['scholarship']), PDO::PARAM_INT);
+ $q->bindParam(':value', intval($_POST['value']), PDO::PARAM_INT);
+ $q->bindParam(':number', intval($_POST['number']), PDO::PARAM_INT);
+ $q->bindParam(':excludefromac', ($_POST['excludefromac'] == 1) ? 1 : 0, PDO::PARAM_INT);
+ $q->bindParam(':trophystudentkeeper', ($_POST['trophystudentkeeper'] == 1) ? 1 : 0, PDO::PARAM_INT);
+ $q->bindParam(':trophystudentreturn', ($_POST['trophystudentreturn'] == 1) ? 1 : 0, PDO::PARAM_INT);
+ $q->bindParam(':trophyschoolkeeper', ($_POST['trophyschoolkeeper'] == 1) ? 1 : 0, PDO::PARAM_INT);
+ $q->bindParam(':trophyschoolreturn', ($_POST['trophyschoolreturn'] == 1) ? 1 : 0, PDO::PARAM_INT);
+ $q->bindParam(':id', $id, PDO::PARAM_INT);
+
+ $q->execute();
+
+ happy_("Prize saved");
+ exit;
+
+ case 'prize_delete':
+ $id = intval($_GET['id']);
+ award_prize_delete($id);
+ happy_("Prize deleted");
+ exit;
+
+ case 'feeder_load':
+ $id = intval($_GET['id']);
+ /* Prepare two lists of fair IDs, for which fairs can upload and download this award */
+
+ $q = $pdo->prepare("SELECT * FROM fairs_awards_link WHERE award_awards_id='$id'");
+ $q->execute();
+ $ul = array();
+ $dl = array();
+ while($r=$q->fetch(PDO::FETCH_ASSOC)) {
+ if($r['upload_winners'] == 'yes') $ul[$r['fairs_id']] = true;
+ if($r['download_award'] == 'yes') $dl[$r['fairs_id']] = true;
+ }
+
+ $q = $pdo->prepare("SELECT * FROM award_awards WHERE id='$id'");
+ $q->execute();
+ $a = $q->fetch(PDO::FETCH_ASSOC);
+ ?>
+
=i18n("Type")?>: |
-
-
+
$tq = $pdo->prepare("SELECT id,type FROM award_types WHERE year='{$config['FAIRYEAR']}' ORDER BY type");
$tq->execute();
echo " |