* 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. */ ?> prepare('SELECT * FROM award_awards WHERE id=?'); $q->execute([$id]); $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) { $ret[$k] = iconv('ISO-8859-1', 'UTF-8', get_value_or_default($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']); try { if ($id == -1) { $q = $pdo->prepare("INSERT INTO award_awards (year,self_nominate,schedule_judges) VALUES (?,'yes','yes')"); $q->execute([$config['FAIRYEAR']]); $id = $pdo->lastInsertId(); /* 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=" . $pdo->quote($_POST['name']) . ", criteria='" . iconv('UTF-8', 'ISO-8859-1', stripslashes($_POST['criteria'])) . "'"; if (isset($_POST['sponsors_id']) || $_POST['sponsors_id'] != '' || intval($_POST['sponsors_id']) != -1) { $q .= ", sponsors_id=" . intval($_POST['sponsors_id']) . " "; } } $q .= " WHERE id=$id"; error_log('query: ' . $q); $q = $pdo->prepare($q); $q->execute(); happy_('Award Created'); happy_('Award information saved'); } catch (PDOException $exception) { error_('Award not created'); error_('Award information failed to save'); error_log($exception); } exit; case 'eligibility_load': $id = intval($_GET['id']); // select the current categories that this award is linked to $ret = array('categories' => array(), 'divisions' => array()); try { $q = $pdo->prepare('SELECT * FROM award_awards_projectcategories WHERE award_awards_id=?'); $q->execute([$id]); while ($r = $q->fetch(PDO::FETCH_ASSOC)) { $ret['categories'][] = $r['projectcategories_id']; } // select the current categories that this award is linked to $q = $pdo->prepare('SELECT * FROM award_awards_projectdivisions WHERE award_awards_id=?'); $q->execute([$id]); while ($r = $q->fetch(PDO::FETCH_ASSOC)) { $ret['divisions'][] = $r['projectdivisions_id']; } echo json_encode($ret); } catch (PDOException $exception) { error_log($exception); } exit; case 'eligibility_save': $id = intval($_POST['award_awards_id']); // now add the new ones if (!is_array($_POST['categories']) || !is_array($_POST['divisions'])) { error_('Invalid data'); exit; } try { // wipe out any old award-category links $q = $pdo->prepare('DELETE FROM award_awards_projectcategories WHERE award_awards_id=?'); $q->execute([$id]); 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)'); $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=?'); $q->execute([$id]); // 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'); } catch (PDOException $exception) { error_('Eligibility information failed to save'); } exit; case 'prize_order': $order = 0; try { foreach ($_GET['prizelist'] as $position => $id) { if ($id == '') continue; $order++; $q = $pdo->prepare('UPDATE `award_prizes` SET `order`=? WHERE `id`=?'); $q->execute([$order, $id]); } happy_('Order Updated.'); } catch (PDOException $exception) { error_('Order failed to update'); error_log($exception); } exit; case 'award_order': $order = 0; try { foreach ($_GET['awardlist'] as $position => $id) { if ($id == '') continue; $order++; $q = $pdo->prepare('UPDATE `award_awards` SET `order`=? WHERE `id`=?'); $q->execute([$order, $id]); } happy_('Order updated'); } catch (PDOException $exception) { error_('Order failed to update'); error_log($exception); } 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=? ORDER BY `order`'); $q->execute([$id]); } 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=?'); $q->execute([$id]); $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; } try { $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); } catch (PDOException $exception) { error_log($exception); } exit; case 'prize_save': $id = intval($_POST['id']); try { $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->bindValue(':cash', intval($_POST['cash']), PDO::PARAM_INT); $q->bindValue(':scholarship', intval($_POST['scholarship']), PDO::PARAM_INT); $q->bindValue(':value', intval($_POST['value']), PDO::PARAM_INT); $q->bindValue(':number', intval($_POST['number']), PDO::PARAM_INT); $q->bindValue(':excludefromac', ($_POST['excludefromac'] == 1) ? 1 : 0, PDO::PARAM_INT); $q->bindValue(':trophystudentkeeper', ($_POST['trophystudentkeeper'] == 1) ? 1 : 0, PDO::PARAM_INT); $q->bindValue(':trophystudentreturn', ($_POST['trophystudentreturn'] == 1) ? 1 : 0, PDO::PARAM_INT); $q->bindValue(':trophyschoolkeeper', ($_POST['trophyschoolkeeper'] == 1) ? 1 : 0, PDO::PARAM_INT); $q->bindValue(':trophyschoolreturn', ($_POST['trophyschoolreturn'] == 1) ? 1 : 0, PDO::PARAM_INT); $q->bindValue(':id', $id, PDO::PARAM_INT); $q->execute(); happy_('Prize saved'); } catch (PDOException $exception) { error_('Prize failed to save'); error_log($exception); } 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=?'); $q->execute([$id]); $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=?'); $q->execute([$id]); $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=?'); $q->execute([$id]); 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 (?,?,?,?)'); $q->execute([$id, $fairs_id, $dl, $ul]); 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=?, external_additional_materials=?, external_register_winners=?, per_fair=? WHERE id=?'); $q->execute([$ident, $mat, $w, $per_fair, $id]); happy_('Feeder Fair information saved'); } catch (PDOException $exception) { error_('Feeder Fair information failed to save'); error_log($exception); } exit; } send_header('Awards Management', array('Committee Main' => 'committee_main.php', 'Administration' => 'admin/index.php', 'Awards Main' => 'admin/awards.php')); ?>
'; echo i18n('Filter By:'); echo '
'; echo ''; echo ''; echo '
'; $q = $pdo->prepare('SELECT id,organization FROM sponsors ORDER BY organization'); $q->execute(); echo ''; echo '
'; $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 ''; echo ''; /* * //FIXME: 'confirmed' no longer exists, we need to lookup their sponsorship record and check the status there, either pending, confirmed or received, dunno if it makes sense to put that here or not.. * * echo ""; */ echo ''; echo '
'; ?>


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=? $where_asi $where_ati AND award_types.year=? $orderby "); $q->execute([$config['FAIRYEAR'], $config['FAIRYEAR']]); show_pdo_errors_if_any($pdo); if ($q->rowCount()) { //echo '* ' . i18n('Click on the Script Order and drag to re-order the awards'); echo ''; echo ''; echo ' '; echo ' '; echo ' '; echo ' '; echo ' '; echo ' '; echo "\n"; $hasexternal = false; while ($r = $q->fetch(PDO::FETCH_OBJ)) { if ($r->award_source_fairs_id) { $cl = 'externalaward'; $hasexternal = true; } else $cl = ''; $eh = "style=\"cursor:pointer;\" onclick=\"popup_editor({$r->id},'');\""; echo "id}\" >\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; $numq = $pdo->prepare('SELECT SUM(number) AS num FROM award_prizes WHERE award_awards_id=?'); $numq->execute([$r->id]); $numr = $numq->fetch(PDO::FETCH_ASSOC); if (!$numr['num']) $numr['num'] = 0; echo " "; echo ' \n"; echo "\n"; } if ($hasexternal) echo ''; echo "
' . i18n('Order') . '' . i18n('Sponsor') . '' . i18n('Type') . '' . i18n('Name') . '' . i18n('Prizes') . '' . i18n('Actions') . '
id}\" class=\"drag_handle\" style=\"cursor:move; text-align:right;\">{$r->order}{$r->organization}{$r->type}{$r->name}{$numr['num']}'; // echo ""; // echo " "; echo "id});\" href=\"#\" >"; echo "
' . i18n('Indicates award imported from an external source') . '
\n"; echo ''; } echo '
'; // echo "Edit prizes for the generic prize template"; if ($_GET['action'] == 'edit_prize_template') { ?>