* 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. */ // This file was modified Jan of 2014 by Richard Sin // Added project type. ?> prepare('SELECT registrations.id AS regid, students.id AS studentid, students.firstname FROM registrations,students ' . "WHERE students.email=?" . "AND registrations.num=?" . "AND registrations.id=?" . 'AND students.registrations_id=registrations.id ' . 'AND registrations.year=?' . 'AND students.year=?'); $q->execute([$_SESSION['email'],$_SESSION['registration_number'],$_SESSION['registration_id'],$config['FAIRYEAR'],$config['FAIRYEAR']]); show_pdo_errors_if_any($pdo); if ($q->rowCount() == 0) { header('Location: register_participants.php'); exit; } $authinfo = $q->fetch(PDO::FETCH_OBJ); // send the header send_header('Participant Registration - Project Information'); echo '<< ' . i18n('Back to Participant Registration Summary') . '
'; echo '
'; $studentstatus = studentStatus(); if ($studentstatus != 'complete') { echo error(i18n('Please complete the Student Information Page first')); send_footer(); exit; } if (get_value_from_array($_POST, 'action') == 'save') { if (registrationFormsReceived()) { echo error(i18n('Cannot make changes to forms once they have been received by the fair')); } else if (registrationDeadlinePassed()) { echo error(i18n('Cannot make changes to forms after registration deadline')); } else { // first, lets make sure this project really does belong to them $q = $pdo->prepare("SELECT * FROM projects WHERE id=? AND registrations_id=? AND year=?"); $q->execute([$_POST['id'], $_SESSION['registration_id'], $config['FAIRYEAR']]); if ($q->rowCount() == 1) { $summarywords = preg_split('/[\s,]+/', $_POST['summary']); $summarywordcount = count($summarywords); if ($summarywordcount > $config['participant_project_summary_wordmax'] || $summarywordcount < $config['participant_project_summary_wordmin']) $summarycountok = 0; else $summarycountok = 1; if ($config['participant_project_title_charmax'] && strlen(stripslashes($_POST['title'])) > $config['participant_project_title_charmax']) // 0 for no limit, eg 255 database field limit { $title = substr(stripslashes($_POST['title']), 0, $config['participant_project_title_charmax']); echo error(i18n('Project title truncated to %1 characters', array($config['participant_project_title_charmax']))); } else $title = stripslashes($_POST['title']); if ($config['participant_short_title_enable'] == 'yes' && $config['participant_short_title_charmax'] && strlen(stripslashes($_POST['shorttitle'])) > $config['participant_short_title_charmax']) // 0 for no limit, eg 255 database field limit { $shorttitle = substr(stripslashes($_POST['shorttitle']), 0, $config['participant_short_title_charmax']); echo error(i18n('Short project title truncated to %1 characters', array($config['participant_short_title_charmax']))); } else $shorttitle = stripslashes($_POST['shorttitle']); $stmt = $pdo->prepare('UPDATE projects SET title=?, shorttitle=?, projectdivisions_id=?, projecttype=?, language=?, req_table=?, req_electricity=?, req_special=?, human_participants=?, animal_participants=?, summary=?, summarycountok=? WHERE id=?'); $stmt->execute([$title,$shorttitle,intval($_POST['projectdivisions_id']),stripslashes($_POST['projecttype']), stripslashes($_POST['language']),stripslashes($_POST['req_table']),stripslashes($_POST['req_electricity']), stripslashes($_POST['req_special']),stripslashes($_POST['human_participants']),stripslashes($_POST['animal_participants']), stripslashes($_POST['summary']),$summarycountok,$_POST['id']]); show_pdo_errors_if_any($pdo); echo notice(i18n('Project information successfully updated')); } else { echo error(i18n('Invalid project to update')); } } } // 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=?"); $q->execute([$_SESSION['registration_id']]); $gradeinfo = $q->fetch(PDO::FETCH_OBJ); // now lets grab all the age categories, so we can choose one based on the max grade $q = $pdo->prepare("SELECT * FROM projectcategories WHERE year=? ORDER BY id"); $q->execute([$config['FAIRYEAR']]); while ($r = $q->fetch(PDO::FETCH_OBJ)) { // save these in an array, just incase we need them later (FIXME: remove this array if we dont need it) $agecategories[$r->id]['category'] = $r->category; $agecategories[$r->id]['mingrade'] = $r->mingrade; $agecategories[$r->id]['maxgrade'] = $r->maxgrade; if ($gradeinfo->maxgrade >= $r->mingrade && $gradeinfo->maxgrade <= $r->maxgrade) { $projectcategories_id = $r->id; } } // now select their project info $q = $pdo->prepare("SELECT * FROM projects WHERE registrations_id=? AND year=?"); $q->execute([$_SESSION['registration_id'], $config['FAIRYEAR']]); // check if it exists, if we didnt find any record, lets insert one if ($q->rowCount() == 0) { $stmt = $pdo->prepare("INSERT INTO projects (registrations_id,projectcategories_id,year) VALUES (?,?,?)"); $stmt->execute([$_SESSION['registration_id'],$projectcategories_id,$config['FAIRYEAR']]); // now query the one we just inserted $q = $pdo->prepare("SELECT * FROM projects WHERE registrations_id=? AND year=?"); $q->execute([$_SESSION['registration_id'], $config['FAIRYEAR']]); } $projectinfo = $q->fetch(PDO::FETCH_OBJ); // make sure that if they changed their grade on the student page, we update their projectcategories_id accordingly if ($projectcategories_id && $projectinfo->projectcategories_id != $projectcategories_id) { echo notice(i18n('Age category changed, updating to %1', array($agecategories[$projectcategories_id]['category']))); $stmt = $pdo->prepare("UPDATE projects SET projectcategories_id=? WHERE id=?"); $stmt->execute([$projectcategories_id, $projectinfo->id]); } // output the current status $newstatus = projectStatus(); if ($newstatus != 'complete') { echo error(i18n('Project Information Incomplete')); } else if ($newstatus == 'complete') { echo happy(i18n('Project Information Complete')); } ?> \n"; echo "\n"; echo "id\">\n"; echo "\n"; echo '\n"; if ($config['participant_short_title_enable'] == 'yes') { echo '\n"; } echo ''; echo ''; if ($config['project_type'] == 'yes') { $q = $pdo->prepare('SELECT * FROM projecttypes ORDER BY type'); $q->execute(); echo ''; } echo ''; echo ''; if ($config['ethics_questions'] == 'yes') // If we have set ethics questions to yes then ask the ethics questions! { echo ''; echo '
' . i18n('Project Title') . ': ' . REQUIREDFIELD; if ($config['participant_project_title_charmax']) echo i18n('(Max %1 characters)', array($config['participant_project_title_charmax'])); echo "
' . i18n('Short Project Title') . ': ' . REQUIREDFIELD; if ($config['participant_short_title_charmax']) echo i18n('(Max %1 characters)', array($config['participant_short_title_charmax'])); echo "
' . i18n('Age Category') . ': '; echo i18n($agecategories[$projectcategories_id]['category']); echo ' (' . i18n('Grades %1-%2', array($agecategories[$projectcategories_id]['mingrade'], $agecategories[$projectcategories_id]['maxgrade'])) . ')'; echo '
' . i18n('Division') . ': '; // ###### Feature Specific - filtering divisions by category if ($config['filterdivisionbycategory'] == 'yes') { $q = $pdo->prepare('SELECT projectdivisions.* FROM projectdivisions,projectcategoriesdivisions_link WHERE projectdivisions.id=projectdivisions_id AND projectcategories_id=' . $projectcategories_id . " AND projectdivisions.year=? AND projectcategoriesdivisions_link.year=? ORDER BY division"); $q->execute([$config['FAIRYEAR'],$config['FAIRYEAR']]); show_pdo_errors_if_any($pdo); } else $q = $pdo->prepare("SELECT * FROM projectdivisions WHERE year=? ORDER BY division"); $q->execute([$config['FAIRYEAR']]); echo '' . REQUIREDFIELD; if ($config['usedivisionselector'] == 'yes') { ?> ' . i18n('Division Selector') . ''; } echo '
' . i18n('Project Type') . ': '; echo "' . REQUIREDFIELD . '
' . i18n('Language') . ': '; echo "' . REQUIREDFIELD; echo ' ' . i18n('This is the language you wish to be judged in!') . '
' . i18n('Requirements') . ': '; echo ''; if ($config['participant_project_table'] == 'no') { // if we arent asking them if they want a table or not, then we set it to 'yes' assuming everyone will get a table echo ' '; } else { echo ''; echo ' '; if ($projectinfo->req_table == 'yes') $check = 'checked="checked"'; else $check = ''; echo " "; echo ' '; if ($projectinfo->req_table == 'no') $check = 'checked="checked"'; else $check = ''; echo " "; echo ''; } if ($config['participant_project_electricity'] == 'no') { // if we arent asking them if they want electricity or not, then we set it to 'yes' assuming everyone will get electricity echo ' '; } else { echo ''; echo ' '; if ($projectinfo->req_electricity == 'yes') $check = 'checked="checked"'; else $check = ''; echo " "; echo ' '; if ($projectinfo->req_electricity == 'no') $check = 'checked="checked"'; else $check = ''; echo " "; echo ''; } echo ''; echo ' '; echo " "; echo ''; echo '
' . i18n('Table') . REQUIREDFIELD . 'Yes No
' . i18n('Electricity') . REQUIREDFIELD . 'Yes No
' . i18n('Special') . 'req_special\" />
'; echo '
' . i18n('Ethics Questions') . ':'; echo ''; echo ''; echo ' '; if ($projectinfo->human_participants == 'yes') $check = 'checked="checked"'; else $check = ''; echo " "; echo ' '; if ($projectinfo->human_participants == 'no') $check = 'checked="checked"'; else $check = ''; echo " "; echo ''; echo ''; echo ' '; if ($projectinfo->animal_participants == 'yes') $check = 'checked="checked"'; else $check = ''; echo " "; echo ' '; if ($projectinfo->animal_participants == 'no') $check = 'checked="checked"'; else $check = ''; echo " "; echo ''; echo '
' . i18n('My project involves human participants') . REQUIREDFIELD . 'Yes No
' . i18n('My project involves animals') . REQUIREDFIELD . 'Yes No
'; } echo '
' . i18n('Summary') . ': ' . REQUIREDFIELD . '
'; $summarywords = preg_split('/[\s,]+/', trim($projectinfo->summary)); $summarywordcount = count($summarywords); if ($summarywordcount > $config['participant_project_summary_wordmax']) echo '
'; else echo '
'; echo "$summarywordcount/"; echo i18n('%1 words maximum', array($config['participant_project_summary_wordmax'])); if ($config['participant_project_summary_wordmin'] > 0) { echo i18n(', %1 words minimum', array($config['participant_project_summary_wordmin'])); } echo '
'; echo '
'; echo '\n"; echo ''; send_footer(); ?>