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); + ?> +

+
+ + + +

/> +

+ + +

/> +

+
+ + + + + + + + + +
:
/>
/>
+

+ + + + + + prepare("SELECT * FROM fairs WHERE type='feeder'"); + $q->execute(); + while($r = $q->fetch(PDO::FETCH_ASSOC)) { + echo ""; + $ch = $dl[$r['id']] == true ? 'checked="checked"' : ''; + echo ""; + $ch = $ul[$r['id']] == true ? 'checked="checked"' : ''; + echo ""; + echo ''; + } + ?> +
{$r['name']}
+
+
+ +
+ prepare("DELETE FROM fairs_awards_link WHERE award_awards_id='$id'"); + $q->execute(); + show_pdo_errors_if_any($pdo); + foreach($data as $fairs_id=>$f) { + $dl = ($f['dl'] == true) ? 'yes' : 'no'; + $ul = ($f['ul'] == true) ? 'yes' : 'no'; + + $q = $pdo->prepare("INSERT INTO fairs_awards_link (award_awards_id,fairs_id,download_award,upload_winners) + VALUES ('$id','$fairs_id','$dl','$ul')"); + $q->execute(); + show_pdo_errors_if_any($pdo); + } + $ident=stripslashes($_POST['identifier']); + $per_fair = $_POST['per_fair'] == 'yes' ? 'yes' : 'no'; + $mat = intval($_POST['additional_materials']); + $w = intval($_POST['register_winners']); + + + $q = $pdo->prepare("UPDATE award_awards SET external_identifier='$ident', + external_additional_materials='$mat', + external_register_winners='$w', + per_fair='$per_fair' + WHERE id='$id'"); + $q->execute(); + + happy_("Feeder Fair information saved"); exit; } - //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','{$config['FAIRYEAR']}')"); - $q->execute(); - echo $q->errorInfo(); - } - - //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','{$config['FAIRYEAR']}')"); - $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->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='".stripslashes(iconv("UTF-8","ISO-8859-1",$_POST['prize']))."', - cash='".intval($_POST['cash'])."', - scholarship='".intval($_POST['scholarship'])."', - value='".intval($_POST['value'])."', - number='".intval($_POST['number'])."', - excludefromac='".(($_POST['excludefromac']==1)? 1 : 0)."', - trophystudentkeeper='".(($_POST['trophystudentkeeper']==1) ? 1 : 0)."', - trophystudentreturn='".(($_POST['trophystudentreturn']==1) ? 1 : 0)."', - trophyschoolkeeper='".(($_POST['trophyschoolkeeper']==1) ? 1 : 0)."', - trophyschoolreturn='".(($_POST['trophyschoolreturn']==1) ? 1 : 0)."' - WHERE id='$id'"); - - $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) -?> -

-
- - - -

/> -

- - -

/> -

-
- - - - - - - - - -
:
/>
/>
-

- - - - - -prepare("SELECT * FROM fairs WHERE type='feeder'"); - $q->execute(); - while($r = $q->fetch(PDO::FETCH_ASSOC)) { - echo ""; - $ch = $dl[$r['id']] == true ? 'checked="checked"' : ''; - echo ""; - $ch = $ul[$r['id']] == true ? 'checked="checked"' : ''; - echo ""; - echo ''; - } -?> -
{$r['name']}
-
-
- -
-prepare("DELETE FROM fairs_awards_link WHERE award_awards_id='$id'"); - $q->execute(); - show_pdo_errors_if_any($pdo); - foreach($data as $fairs_id=>$f) { - $dl = ($f['dl'] == true) ? 'yes' : 'no'; - $ul = ($f['ul'] == true) ? 'yes' : 'no'; - - $q = $pdo->prepare("INSERT INTO fairs_awards_link (award_awards_id,fairs_id,download_award,upload_winners) - VALUES ('$id','$fairs_id','$dl','$ul')"); - $q->execute(); - show_pdo_errors_if_any($pdo); - } - $ident=stripslashes($_POST['identifier']); - $per_fair = $_POST['per_fair'] == 'yes' ? 'yes' : 'no'; - $mat = intval($_POST['additional_materials']); - $w = intval($_POST['register_winners']); - - - $q = $pdo->prepare("UPDATE award_awards SET external_identifier='$ident', - external_additional_materials='$mat', - external_register_winners='$w', - per_fair='$per_fair' - WHERE id='$id'"); - $q->execute(); - - happy_("Feeder Fair information saved"); - exit; -} - send_header("Awards Management", array('Committee Main' => 'committee_main.php', 'Administration' => 'admin/index.php', 'Awards Main' => 'admin/awards.php') ); ?> - + : -prepare("SELECT id,type FROM award_types WHERE year='{$config['FAIRYEAR']}' ORDER BY type"); $tq->execute(); echo "id}\" name=\"categories[]\" value=\"$cr->id\" />".i18n($cr->category)."
"; @@ -753,9 +785,12 @@ $(document).ready(function() { : prepare("SELECT * FROM projectdivisions WHERE year='{$config['FAIRYEAR']}' ORDER BY division"); + $dq = $pdo->prepare("SELECT * FROM projectdivisions WHERE year = :year ORDER BY division"); + + $dq->bindParam(':year', $config['FAIRYEAR'], PDO::PARAM_INT); + $dq->execute(); - echo errorInfo(); + while($dr=$dq->fetch(PDO::FETCH_OBJ)) { echo "id}\" name=\"divisions[]\" value=\"$dr->id\" />".i18n($dr->division)."
"; } @@ -941,17 +976,15 @@ $(document).ready(function() { "; @@ -994,8 +1027,10 @@ echo ""; echo ""; -$q = $pdo->prepare("SELECT id,type FROM award_types WHERE year='{$config['FAIRYEAR']}' ORDER BY type"); +$q = $pdo->prepare("SELECT id, type FROM award_types WHERE year = :year ORDER BY type"); +$q->bindParam(':year', $config['FAIRYEAR'], PDO::PARAM_INT); $q->execute(); + echo "" /> +$where_asi = $where_asi ?? ''; +$where_ati = $where_ati ?? ''; + if($sponsors_id) $where_asi="AND sponsors_id='$sponsors_id'"; if($award_types_id) $where_ati="AND award_types_id='$award_types_id'"; // if($award_sponsors_confirmed) $where_asc="AND award_sponsors.confirmed='$award_sponsors_confirmed'"; -if(!$orderby) $orderby="order"; +$orderby = $orderby ?? ""; +if(!$orderby) $orderby="ORDER BY `order`"; - $q = $pdo->prepare("SELECT - award_awards.id, - award_awards.name, - award_awards.order, - award_awards.award_source_fairs_id, - award_types.type, - sponsors.organization - FROM - award_awards - LEFT JOIN sponsors ON sponsors.id = award_awards.sponsors_id - LEFT JOIN award_types ON award_types.id = award_awards.award_types_id - WHERE +$q = $pdo->prepare("SELECT +award_awards.id, +award_awards.name, +award_awards.order, +award_awards.award_source_fairs_id, +award_types.type, +sponsors.organization +FROM +award_awards +LEFT JOIN sponsors ON sponsors.id = award_awards.sponsors_id +LEFT JOIN award_types ON award_types.id = award_awards.award_types_id +WHERE award_awards.year='{$config['FAIRYEAR']}' $where_asi $where_ati AND award_types.year='{$config['FAIRYEAR']}' - ORDER BY `$orderby`"); - - $q->execute(); + $orderby +"); + + +$q->execute(); + + +show_pdo_errors_if_any($pdo); -show_do_erros_if_any($pdo); -print_r($q->rowCount()); if($q->rowCount()) - { +{ echo "* ".i18n("Click on the Script Order and drag to re-order the awards"); echo ""; echo ""; diff --git a/admin/cms.php b/admin/cms.php index 8f3c373b..a3bce3cb 100644 --- a/admin/cms.php +++ b/admin/cms.php @@ -36,9 +36,28 @@ "website_content_management" ); +?> +
+ +$langname) { $filename=stripslashes(get_value_from_array($_POST, 'filename', '')); // $filename=ereg_replace("[^A-Za-z0-9\.\_\/]","_",$_POST['filename']); diff --git a/admin/exhibithall_sa.php b/admin/exhibithall_sa.php index e80e7cc5..a820a871 100644 --- a/admin/exhibithall_sa.php +++ b/admin/exhibithall_sa.php @@ -218,9 +218,7 @@ TRACE("Grid size: {$grid_size}m\n"); $div = array(); TRACE("Loading Project Divisions...\n"); $q=$pdo->prepare("SELECT * FROM projectdivisions WHERE year='{$config['FAIRYEAR']}' ORDER BY id"); -while($r=$q->fetch(PDO::FETCH_OBJ)) -{ -{ +while($r=$q->fetch(PDO::FETCH_OBJ)) { $divshort[$r->id]=$r->division_shortform; $div[$r->id]=$r->division; TRACE(" {$r->id} - {$div[$r->id]}\n"); @@ -230,7 +228,7 @@ TRACE("Loading Project Age Categories...\n"); $cat = array(); $q=$pdo->prepare("SELECT * FROM projectcategories WHERE year='{$config['FAIRYEAR']}' ORDER BY id"); $q->execute(); -while($r=$q->fetch(PDO::FETCH_OBJ) { +while($r=$q->fetch(PDO::FETCH_OBJ)) { $catshort[$r->id]=$r->category_shortform; $cat[$r->id]=$r->category; TRACE(" {$r->id} - {$r->category}\n"); diff --git a/admin/fundraising_campaigns_prospecting.php b/admin/fundraising_campaigns_prospecting.php index 3ec52f1b..72c74a9f 100644 --- a/admin/fundraising_campaigns_prospecting.php +++ b/admin/fundraising_campaigns_prospecting.php @@ -63,7 +63,7 @@ if($_POST['donortype']=="organization") { $cq->execute(); show_pdo_errors_if_any($pdo); - while($cr=m$cq->fetch(PDO::FETCH_OBJ)) { + while($cr=$cq->fetch(PDO::FETCH_OBJ)) { if(!$userslist[$cr->uid]) $userslist[$cr->uid]=user_load($cr->users_id); } diff --git a/admin/project_editor.php b/admin/project_editor.php index 9c6e85f7..aa4b8f68 100644 --- a/admin/project_editor.php +++ b/admin/project_editor.php @@ -178,7 +178,8 @@ function project_save() function project_load() { - global $registrations_id, $config, $pdo; + global $registrations_id, $config, $pdo, $projectcategories_id; + // $projectcategories_id=null; //now lets find out their MAX grade, so we can pre-set the Age Category $q=$pdo->prepare("SELECT MAX(grade) AS maxgrade FROM students WHERE registrations_id='".$registrations_id."'"); $q->execute(); @@ -293,7 +294,7 @@ if($config['project_type'] == 'yes'){ ?> - + "; - echo ""; echo ""; - echo ""; + echo ""; $sq=$pdo->prepare("SELECT students.firstname, students.lastname, diff --git a/admin/reports_acscript.php b/admin/reports_acscript.php index f72a8a7e..4c313c2a 100644 --- a/admin/reports_acscript.php +++ b/admin/reports_acscript.php @@ -113,10 +113,11 @@ if(!$scriptformat) $scriptformat="default"; `order`, projects.projectnumber"); $pq->execute(); - show_pdo_errors_if_any($pdo); + show_pdo_errors_if_any($pdo); $r->winners = array(); $r->awarded_count = 0; + while($w = $pq->fetch(PDO::FETCH_OBJ)) { if($w->projects_id) { diff --git a/admin/reports_appeal_letters.php b/admin/reports_appeal_letters.php index 0d79d48b..7887f173 100644 --- a/admin/reports_appeal_letters.php +++ b/admin/reports_appeal_letters.php @@ -70,7 +70,7 @@ $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO); /* Load the users */ $users = array(); $q = $pdo->prepare("SELECT * FROM fundraising_campaigns_users_link WHERE fundraising_campaigns_id='$fcid'"); -while($l = $q->fetch(PDO::FETCH_ASSOC))) { +while($l = $q->fetch(PDO::FETCH_ASSOC)) { $uid = $l['users_uid']; $users[$uid] = user_load_by_uid($uid); } @@ -79,7 +79,7 @@ while($l = $q->fetch(PDO::FETCH_ASSOC))) { $q = $pdo->prepare("SELECT * FROM emails WHERE fundraising_campaigns_id='$fcid' AND val='$key'"); $q->execute(); -while($e = $q->fetch(PDO::FETCH_ASSOC))) { +while($e = $q->fetch(PDO::FETCH_ASSOC)) { foreach($users as $uid=>&$u) { $subject = communication_replace_vars($e['subject'], $u); diff --git a/admin/reports_program_awards.php b/admin/reports_program_awards.php index ad692f1b..583eb10b 100644 --- a/admin/reports_program_awards.php +++ b/admin/reports_program_awards.php @@ -44,7 +44,7 @@ show_pdo_errors_if_any($pdo); - if($q->rowCCount()) + if($q->rowCount()) { while($r=$q->fetch(PDO::FETCH_OBJ)) { diff --git a/admin/send_emailqueue.php b/admin/send_emailqueue.php index 056fe67b..715ba061 100644 --- a/admin/send_emailqueue.php +++ b/admin/send_emailqueue.php @@ -22,6 +22,7 @@ ?> prepare("UPDATE emailqueue_recipients SET sent=NOW(), `result`='ok' WHERE id='$r->id'"); - $stmt->execute() + $stmt->execute(); show_pdo_errors_if_any($pdo); $newnumsent=$email->numsent+1; $stmt = $pdo->prepare("UPDATE emailqueue SET numsent=$newnumsent WHERE id='$email->id'"); @@ -91,7 +92,7 @@ if(!$config['emailqueue_lock']) { //now check if we're done yet $rq=$pdo->prepare("SELECT COUNT(*) AS num FROM emailqueue_recipients WHERE sent IS NULL AND emailqueue_id='$email->id'"); $rq->execute(); - $rr=$rq;->fetch(PDO::FETCH_OBJ) + $rr=$rq->fetch(PDO::FETCH_OBJ); if($rr->num==0) { $stmt = $pdo->prepare("UPDATE emailqueue SET finished=NOW() WHERE id='$email->id'"); $stmt->execute(); diff --git a/admin/settranslation.php b/admin/settranslation.php index 302fe861..e31ff388 100644 --- a/admin/settranslation.php +++ b/admin/settranslation.php @@ -34,16 +34,18 @@ foreach($config['languages'] AS $l=>$ln) { if($_POST['translate_'.$l]) { $q=$pdo->prepare("SELECT * FROM translations WHERE lang='$l' AND strmd5='$m'"); $q->execute(); - if($q->rowCount()) + + if($q->rowCount()) { $stmt = $pdo->prepare("UPDATE translations SET val='".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['translate_'.$l]))."' WHERE lang='$l' AND strmd5='$m'"); - $stmt->execute();else - + $stmt->execute(); + } else { $stmt = $pdo->prepare("INSERT INTO translations (lang,strmd5,str,val) VALUES ('$l','$m','".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['translate_str_hidden']))."','".iconv("UTF-8","ISO-8859-1",stripslashes($_POST['translate_'.$l]))."')"); - $stmt->execute();} - - else { + $stmt->execute(); + } + } else { $stmt = $pdo->prepare("DELETE FROM translations WHERE lang='$l' AND strmd5='$m'"); - $stmt->execute();} + $stmt->execute(); + } } echo "ok"; diff --git a/admin/student_editor.php b/admin/student_editor.php index 4c7c07cf..598bf1f2 100644 --- a/admin/student_editor.php +++ b/admin/student_editor.php @@ -225,7 +225,7 @@ function students_load() $numfound=$q->rowCount(); - $numtoshow = intval($_GET['numstudents']); + $numtoshow = intval(get_value_from_array($_GET, 'numstudents')); if($numtoshow == 0) $numtoshow=$numfound; @@ -249,7 +249,7 @@ function students_load() echo "

".i18n("Student %1 Details",array($x))."

"; //if we have a valid student, set their ID, so we can UPDATE when we submit //if there is no record for this student, then set the ID to 0, so we will INSERT when we submit - if($studentinfo->id) $id=$studentinfo->id; else $id=0; + if(get_value_property_or_default($studentinfo,'id')) $id=$studentinfo->id; else $id=0; //true should work here, it just has to be set to _something_ for it to work. echo ""; @@ -258,8 +258,8 @@ function students_load() echo ""; echo "
: () ()
: @@ -420,7 +421,7 @@ $q->execute(); } echo "
".i18n("Summary").": ".REQUIREDFIELD."
"; + echo "
".i18n("Summary").": ".REQUIREDFIELD."
"; $summarywords=preg_split("/[\s,]+/",$projectinfo->summary); $summarywordcount=count($summarywords); diff --git a/admin/registration_list.php b/admin/registration_list.php index 69c998ea..1c941c24 100644 --- a/admin/registration_list.php +++ b/admin/registration_list.php @@ -145,7 +145,7 @@ function popup_editor(id, open_tab) /* Force no tabs to be selected, need to set collapsible * to true first */ $('#editor_tabs').tabs('option', 'collapsible', true); - $('#editor_tabs').tabs('option', 'selected', -1); + $('#editor_tabs').tabs('option', 'active', -1); /* Then we'll select a tab to force a reload */ @@ -487,7 +487,7 @@ function print_row($r) echo "
" .get_value_property_or_default($r, 'title')."".i18n(get_value_from_array($cats, get_value_property_or_default($r, 'projectcategories_id'), ''))."".i18n($divs[get_value_property_or_default($r, 'projectdivisions_id', '')])."".i18n(get_value_from_array($divs, get_value_property_or_default($r, 'projectdivisions_id', '')))."
"; echo "\n"; - echo " \n"; - echo " \n"; + echo " \n"; + echo " \n"; echo "\n"; if($config['participant_student_personal']=="yes") { @@ -278,10 +278,10 @@ function students_load() echo "\n"; echo "\n"; - echo " \n"; + echo " \n"; if($config['participant_student_personal']=="yes") { - echo " \n"; + echo " \n"; } else { @@ -293,19 +293,19 @@ function students_load() if($config['participant_student_personal']=="yes") { 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("First Name")."firstname\" />".REQUIREDFIELD."".i18n("Last Name")."lastname\" />".REQUIREDFIELD."".i18n("First Name")."".REQUIREDFIELD."".i18n("Last Name")."".REQUIREDFIELD."
".i18n("Email Address")."email\" />".REQUIREDFIELD."".i18n("Email Address")."".REQUIREDFIELD."".i18n("City")."city\" />".REQUIREDFIELD."".i18n("City")."".REQUIREDFIELD."
".i18n("Address")."address\" />".REQUIREDFIELD."".i18n("Address")."".REQUIREDFIELD."".i18n($config['provincestate']).""; - emit_province_selector("province[$x]",$studentinfo->province); + emit_province_selector("province[$x]",get_value_property_or_default($studentinfo, 'province')); echo REQUIREDFIELD."
".i18n($config['postalzip'])."postalcode\" />".REQUIREDFIELD."".i18n("Phone")."phone\" />".REQUIREDFIELD."".i18n($config['postalzip'])."".REQUIREDFIELD."".i18n("Phone")."".REQUIREDFIELD."
".i18n("Date of Birth")."\n"; - list($year,$month,$day)=split("-",$studentinfo->dateofbirth); + list($year,$month,$day)=explode("-",get_value_property_or_default($studentinfo, 'dateofbirth', '')); echo "\n"; echo ""; echo "\n"; } @@ -407,8 +407,8 @@ function students_load() echo "\n"; echo "\n"; - echo " \n"; - echo " \n"; + echo " \n"; + echo " \n"; echo "\n"; @@ -494,10 +494,10 @@ function registration_load()
"; emit_day_selector("day[$x]",$day); echo "\n"; @@ -374,7 +374,7 @@ function students_load() { echo "
".i18n("Special Food Requirements").""; - echo "foodreq\" />"; + echo ""; echo "
".i18n("Teacher Name")."teachername\" />".i18n("Teacher Email")."teacheremail\" />".i18n("Teacher Name")."".i18n("Teacher Email")."
- + - + \n"; echo "\n"; item($u, 'username', '(if different from Email)'); -item($u, 'password'); echo "\n"; echo "\n"; item($u, 'address'); diff --git a/volunteer.inc.php b/volunteer.inc.php index 632582a4..4d3ccedc 100644 --- a/volunteer.inc.php +++ b/volunteer.inc.php @@ -27,7 +27,7 @@ function volunteer_status_position($u) { - global $config; + global $config, $pdo; /* See if they have selected something */ $q = "SELECT * FROM volunteer_positions_signup WHERE users_id='{$u['id']}' AND year='{$config['FAIRYEAR']}'"; @@ -41,7 +41,7 @@ function volunteer_status_position($u) function volunteer_status_update(&$u) { - global $config; + global $config, $pdo; if( user_personal_info_status($u) == 'complete' && volunteer_status_position($u) == 'complete' ) diff --git a/volunteer_position.php b/volunteer_position.php index c415f071..1d1fc6b0 100644 --- a/volunteer_position.php +++ b/volunteer_position.php @@ -27,6 +27,7 @@ require_once("user.inc.php"); require_once("volunteer.inc.php"); + global $pdo; if($_SESSION['embed'] == true) { $u = user_load($_SESSION['embed_edit_id']); diff --git a/winners.php b/winners.php index 1b7149c4..77f8762b 100644 --- a/winners.php +++ b/winners.php @@ -26,6 +26,8 @@ require("projects.inc.php"); require_once('helper.inc.php'); + global $pdo; + send_header("Winners"); if(get_value_from_array($_GET, 'edit')) $edit=$_GET['edit']; @@ -75,6 +77,7 @@ if(get_value_from_array($_GET, 'year') && get_value_from_array($_GET, 'type')) { ORDER BY awards_order"); + $q->execute(); show_pdo_errors_if_any($pdo); if($q->rowCount()) @@ -116,7 +119,8 @@ if(get_value_from_array($_GET, 'year') && get_value_from_array($_GET, 'type')) { } // Still have to find the PDO equivalent //mysql_data_seek($pq, 0); - $pq->fetch(PDO::FETCH_ORI_ABS(0)); + //FIXME https://stackoverflow.com/questions/15637291/how-use-mysql-data-seek-with-pdo + $pq->fetch(PDO::FETCH_ORI_ABS); } if($show_unawarded_awards=="yes" || $awarded_count > 0) { @@ -232,7 +236,8 @@ if(get_value_from_array($_GET, 'year') && get_value_from_array($_GET, 'type')) { } } else -{ $q = $pdo->query("SELECT +{ + $q = $pdo->prepare("SELECT DISTINCT(winners.year) AS year, dates.date FROM @@ -244,6 +249,7 @@ else AND dates.date<=NOW() ORDER BY year DESC"); + $q->execute(); $first=true; if($q->rowCount())
:
:
: