Compare commits

...

5 Commits

Author SHA1 Message Date
890d8a23ff Fixes for Participant Registration 2025-02-24 04:55:45 +00:00
5d760ca308 Add Address Complete Support 2025-02-23 20:21:17 +00:00
839f9ae39d Fix height on forms 2025-02-23 04:58:58 +00:00
642e16dd22 Fix mentor selection for 0 2025-02-23 04:58:48 +00:00
1b5e267d8b Hide project division selector 2025-02-23 04:58:28 +00:00
8 changed files with 118 additions and 89 deletions

View File

@ -32,8 +32,7 @@ include_once ('helper.inc.php');
error_reporting(E_ALL);
ini_set('log_errors', 'On');
// error_reporting( E_ALL ^ E_WARNING );
//error_reporting(E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED);
// error_reporting(E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED);
define('REQUIREDFIELD', '<span class="requiredfield">*</span>');
@ -378,7 +377,9 @@ function send_header($title = '', $nav = null, $icon = null, $titletranslated =
</head>
<body>
<!-- <? if ($title && !$titletranslated)
<link rel="stylesheet" type="text/css" href="http://ws1.postescanada-canadapost.ca/css/addresscomplete-2.50.min.css?key=ej31-je29-tw29-bx75" /><script type="text/javascript" src="http://ws1.postescanada-canadapost.ca/js/addresscomplete-2.50.min.js?key=ej31-je29-tw29-bx75"></script>
<!-- <?
if ($title && !$titletranslated)
echo i18n($title);
else if ($title)
echo $title;
@ -736,7 +737,7 @@ function emit_month_selector($name, $selected = '')
{
echo "<select name=\"$name\">\n";
$months = array('', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
echo '<option value="">' . i18n('Month') . "</option>\n";
echo '<option value="00">' . i18n('Month') . "</option>\n";
for ($x = 1; $x <= 12; $x++) {
if ($x == $selected)
$s = 'selected="selected"';
@ -751,7 +752,7 @@ function emit_month_selector($name, $selected = '')
function emit_day_selector($name, $selected = '')
{
echo "<select name=\"$name\">\n";
echo '<option value="">' . i18n('Day') . "</option>\n";
echo '<option value="00">' . i18n('Day') . "</option>\n";
for ($x = 1; $x <= 31; $x++)
echo '<option value="' . ($x < 10 ? '0' : '') . "$x\" " . ($selected == $x ? 'selected="selected"' : '') . ">$x</option>\n";
@ -763,7 +764,7 @@ function emit_year_selector($name, $selected = '', $min = 0, $max = 0)
{
$curyear = date('Y');
echo "<select name=\"$name\">\n";
echo '<option value="">' . i18n('Year') . "</option>\n";
echo '<option value="0000">' . i18n('Year') . "</option>\n";
if ($min && $max) {
for ($x = $min; $x <= $max; $x++)

View File

@ -66,9 +66,9 @@ function studentStatus($reg_id = '')
{
global $config, $pdo;
if ($config['participant_student_personal'] == 'yes')
$required_fields = array('firstname', 'lastname', 'address', 'city', 'postalcode', 'phone', 'email', 'grade', 'dateofbirth', 'schools_id');
$required_fields = array('firstname', 'lastname', 'address', 'city', 'postalcode', 'phone', 'email', 'grade', 'dateofbirth', 'schools_id', 'teachername', 'teacheremail');
else
$required_fields = array('firstname', 'lastname', 'email', 'grade', 'schools_id');
$required_fields = array('firstname', 'lastname', 'email', 'grade', 'schools_id', 'teachername', 'teacheremail');
if ($config['participant_student_tshirt'] == 'yes')
$required_fields[] = 'tshirt';
@ -103,7 +103,7 @@ function studentStatus($reg_id = '')
function emergencycontactStatus($reg_id = '')
{
global $config, $pdo;
$required_fields = array('firstname', 'lastname', 'relation', 'phone1');
$required_fields = array('firstname', 'lastname', 'relation', 'email', 'phone1');
if ($reg_id)
$rid = $reg_id;

View File

@ -173,7 +173,7 @@ while ($sr = $sq->fetch(PDO::FETCH_OBJ)) {
}
echo " </select>\n";
echo REQUIREDFIELD . '</td>';
echo ' <td>' . i18n('Email Address') . ": </td><td><input type=\"text\" name=\"email[$id]\" size=\"20\" value=\"$r->email\" /></td>";
echo ' <td>' . i18n('Email Address') . ": </td><td><input type=\"text\" name=\"email[$id]\" size=\"20\" value=\"$r->email\" />". REQUIREDFIELD ."</td>";
echo "</tr>\n";
echo '<tr>';
echo ' <td>' . i18n('Phone 1') . ": </td><td><input type=\"text\" name=\"phone1[$id]\" size=\"20\" value=\"$r->phone1\" />" . REQUIREDFIELD . '</td>';

View File

@ -39,13 +39,13 @@ if (!($_SESSION['registration_number'] && $_SESSION['registration_id'])) {
global $pdo;
$q = $pdo->prepare('SELECT registrations.id AS regid, students.id AS studentid, students.firstname FROM registrations,students '
. "WHERE students.email=?"
. "AND registrations.num=?"
. "AND registrations.id=?"
. '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']]);
$q->execute([$_SESSION['email'], $_SESSION['registration_number'], $_SESSION['registration_id'], $config['FAIRYEAR'], $config['FAIRYEAR']]);
show_pdo_errors_if_any($pdo);
if ($q->rowCount() == 0) {
@ -111,10 +111,10 @@ if (get_value_from_array($_GET, 'action') == 'removementor') {
echo error(i18n('Cannot make changes to forms once they have been received by the fair'));
} else {
// first make sure this is one belonging to this registration id
$q = $pdo->prepare("SELECT id FROM mentors WHERE id=? AND registrations_id=?");
$q = $pdo->prepare('SELECT id FROM mentors WHERE id=? AND registrations_id=?');
$q->execute([$_GET['removementor'], $_SESSION['registration_id']]);
if ($q->rowCount() == 1) {
$stmt = $pdo->prepare("DELETE FROM mentors WHERE id=? AND registrations_id=?");
$stmt = $pdo->prepare('DELETE FROM mentors WHERE id=? AND registrations_id=?');
$stmt->execute([$_GET['removementor'], $_SESSION['registration_id']]);
echo notice(i18n('Mentor successfully removed'));
} else {
@ -125,17 +125,17 @@ if (get_value_from_array($_GET, 'action') == 'removementor') {
// now query and display
$q = $pdo->prepare("SELECT nummentors FROM registrations WHERE id=? AND year=?");
$q = $pdo->prepare('SELECT nummentors FROM registrations WHERE id=? AND year=?');
$q->execute([$_SESSION['registration_id'], $config['FAIRYEAR']]);
$r = $q->fetch(PDO::FETCH_OBJ);
$registrations_nummentors = $r->nummentors;
$q = $pdo->prepare("SELECT * FROM mentors WHERE registrations_id=? AND year=?");
$q = $pdo->prepare('SELECT * FROM mentors WHERE registrations_id=? AND year=?');
$q->execute([$_SESSION['registration_id'], $config['FAIRYEAR']]);
$numfound = $q->rowCount();
if (isset($_GET['nummentors'])) {
$stmt = $pdo->prepare("UPDATE registrations SET nummentors=? WHERE id=?");
$stmt = $pdo->prepare('UPDATE registrations SET nummentors=? WHERE id=?');
$stmt->execute([$_GET['nummentors'], $_SESSION['registration_id']]);
$registrations_nummentors = $_GET['nummentors'];
$numtoshow = $_GET['nummentors'];
@ -151,28 +151,41 @@ if ($newstatus != 'complete') {
echo happy(i18n('Mentor Information Complete'));
}
echo "<p>If a mentor—such as a scientist, parent, or peer—provided guidance, training, or technical support for your project, you must disclose their involvement. Mentors may offer advice, teach techniques, or ensure safety but should not conduct research or analyze data for you. If the work is entirely your own (you had no mentor), please select \"0\"</p>";
echo '<form name="nummentorsform" method="get" action="register_participants_mentor.php">';
echo i18n('Number of mentors that helped with the project: ');
echo "<select name=\"nummentors\" onchange=\"document.forms.nummentorsform.submit()\">\n";
if ($registrations_nummentors === -1 or $registrations_nummentors == null) {
if ($registrations_nummentors === -1 || $registrations_nummentors == null) {
$sel = 'selected="selected"';
} else
echo "<option $sel value=\"-1\">" . i18n('Choose') . "</option>\n";
for ($x = $config['minmentorsperproject']; $x <= $config['maxmentorsperproject']; $x++) {
// dont let them go less than the number we found. to go less, they must delete each record individually
if ($x < $numfound)
continue;
echo "<option value=\"$x\">$x</option>\n";
}
} else {
$sel = '';
echo "<option $sel value=\"-1\">" . i18n('Choose') . "</option>\n";
echo "<option $sel value=\"-1\">" . i18n('Choose') . "</option>\n";
for ($x = $config['minmentorsperproject']; $x <= $config['maxmentorsperproject']; $x++) {
// dont let them go less than the number we found. to go less, they must delete each record individually
if ($x < $numfound)
continue;
for ($x = $config['minmentorsperproject']; $x <= $config['maxmentorsperproject']; $x++) {
// dont let them go less than the number we found. to go less, they must delete each record individually
if ($x < $numfound)
continue;
if ($numtoshow == $x && $registrations_nummentors !== -1)
$selected = 'selected="selected"';
else
$selected = '';
if ($numtoshow == $x)
$selected = 'selected="selected"';
else
$selected = '';
echo "<option $selected value=\"$x\">$x</option>\n";
echo "<option $selected value=\"$x\">$x</option>\n";
}
}
echo '</select>';
echo '</form>';
@ -182,7 +195,7 @@ for ($x = 1; $x <= $numtoshow; $x++) {
$mentorinfo = $q->fetch(PDO::FETCH_OBJ);
echo '<h3>' . i18n('Mentor %1 Details', array($x)) . '</h3>';
// if we have a valid mentor, set their ID, so we can UPDATE when we submit
// if there is no record for this mentor, then set the ID to 0, so we will INSERT when we submit
// if there is no record for thismentor, then set the ID to 0, so we will INSERT when we submit
if ($mentorinfo->id)
$id = $mentorinfo->id;
else

View File

@ -77,6 +77,7 @@ if (get_value_from_array($_POST, 'action') == 'save') {
} else if (registrationDeadlinePassed()) {
echo error(i18n('Cannot make changes to forms after registration deadline'));
} else {
try {
// 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']]);
@ -122,11 +123,14 @@ if (get_value_from_array($_POST, 'action') == 'save') {
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'));
}
} catch (PDOException $exception) {
echo error(i18n('Failed to update project information. Please ensure all mandatory fields have values.'));
}
}
}
@ -254,7 +258,8 @@ if ($config['usedivisionselector'] == 'yes') {
</script>
<?
echo '&nbsp;<a href="#" onClick="openDivSelWindow(); return false;">' . i18n('Division Selector') . '</a>';
// FIXME: Feature to help a student pick a category
//echo '&nbsp;<a href="#" onClick="openDivSelWindow(); return false;">' . i18n('Division Selector') . '</a>';
}
echo '</td></tr>';

View File

@ -78,13 +78,13 @@ if ($newstatus != 'complete') {
<script src="https://cdn.docuseal.com/js/form.js"></script>
<div class="signatures" style="background-color: #d3d3d3; min-height: 800px">
<div class="signatures" style="background-color: #d3d3d3;">
<docuseal-form
id="docusealForm"
data-src=<? echo "$SIGNATURES_URL" ?>
data-email=<? echo $student[0]['email'] ?>
data-values='<? echo '{"Name": "' . $student[0]['first'] . ' ' . $student[0]['last'] . '", "Grade": "' . $student[0]['grade'] . '"}' ?>'
style="display: block; max-height: 800px; overflow: auto;"
style="display: block; max-height: 100vh; overflow: auto;"
</docuseal-form>
</div>

View File

@ -102,33 +102,38 @@ if (get_value_from_array($_POST, 'action') == 'save') {
} else {
$schoolvalue = "'" . stripslashes($_POST['schools_id'][$x]) . "', ";
}
// INSERT new record
$dob = $_POST['year'][$x] . '-' . $_POST['month'][$x] . '-' . $_POST['day'][$x];
$stmt = $pdo->prepare('INSERT INTO students (registrations_id,firstname,lastname,pronunciation,email,address,city,county,province,postalcode,phone,dateofbirth,grade,schools_id,tshirt,medicalalert,foodreq,teachername,teacheremail,year) VALUES ('
. "'" . $_SESSION['registration_id'] . "', "
. "'" . stripslashes($_POST['firstname'][$x]) . "', "
. "'" . stripslashes($_POST['lastname'][$x]) . "', "
. "'" . stripslashes($_POST['pronunciation'][$x]) . "', "
. "'" . stripslashes($_POST['email'][$x]) . "', "
. "'" . stripslashes($_POST['address'][$x]) . "', "
. "'" . stripslashes($_POST['city'][$x]) . "', "
. "'" . stripslashes($_POST['county'][$x]) . "', "
. "'" . stripslashes($_POST['province'][$x]) . "', "
. "'" . stripslashes($_POST['postalcode'][$x]) . "', "
. "'" . stripslashes($_POST['phone'][$x]) . "', "
. "'$dob', "
. "'" . stripslashes($_POST['grade'][$x]) . "', "
. $schoolvalue
. "'" . stripslashes($_POST['tshirt'][$x]) . "', "
. "'" . stripslashes($_POST['medicalalert'][$x]) . "', "
. "'" . stripslashes($_POST['foodreq'][$x]) . "', "
. "'" . stripslashes($_POST['teachername'][$x]) . "', "
. "'" . stripslashes($_POST['teacheremail'][$x]) . "', "
. "'" . $config['FAIRYEAR'] . "')");
$stmt->execute();
$students_id = $pdo->lastInsertId();
echo notice(i18n('%1 %2 successfully added', array($_POST['firstname'][$x], $_POST['lastname'][$x])));
try {
// INSERT new record
$dob = $_POST['year'][$x] . '-' . $_POST['month'][$x] . '-' . $_POST['day'][$x];
$stmt = $pdo->prepare('INSERT INTO students (registrations_id,firstname,lastname,pronunciation,email,address,city,county,province,postalcode,phone,dateofbirth,grade,schools_id,tshirt,medicalalert,foodreq,teachername,teacheremail,year) VALUES ('
. "'" . $_SESSION['registration_id'] . "', "
. "'" . stripslashes($_POST['firstname'][$x]) . "', "
. "'" . stripslashes($_POST['lastname'][$x]) . "', "
. "'" . stripslashes($_POST['pronunciation'][$x]) . "', "
. "'" . stripslashes($_POST['email'][$x]) . "', "
. "'" . stripslashes($_POST['address'][$x]) . "', "
. "'" . stripslashes($_POST['city'][$x]) . "', "
. "'" . stripslashes($_POST['county'][$x]) . "', "
. "'" . stripslashes($_POST['province'][$x]) . "', "
. "'" . stripslashes($_POST['postalcode'][$x]) . "', "
. "'" . stripslashes($_POST['phone'][$x]) . "', "
. "'$dob', "
. "'" . stripslashes($_POST['grade'][$x]) . "', "
. $schoolvalue
. "'" . stripslashes($_POST['tshirt'][$x]) . "', "
. "'" . stripslashes($_POST['medicalalert'][$x]) . "', "
. "'" . stripslashes($_POST['foodreq'][$x]) . "', "
. "'" . stripslashes($_POST['teachername'][$x]) . "', "
. "'" . stripslashes($_POST['teacheremail'][$x]) . "', "
. "'" . $config['FAIRYEAR'] . "')");
$stmt->execute();
$students_id = $pdo->lastInsertId();
echo notice(i18n('%1 %2 successfully added', array($_POST['firstname'][$x], $_POST['lastname'][$x])));
} catch (PDOException $exception) {
echo error(i18n('Failed to add student %1 %2. Please ensure all mandatory fields are complete.', array($_POST['firstname'][$x], $_POST['lastname'][$x])));
}
} else {
// if they use schoolpassword or singlepassword, then we dont need to save teh schools_id because its already set when they inserted the record, and we dont allow them to change their school.
if (($config['participant_registration_type'] == 'schoolpassword' || $config['participant_registration_type'] == 'invite') && !$_POST['schools_id'][$x]) {
@ -137,31 +142,35 @@ if (get_value_from_array($_POST, 'action') == 'save') {
$schoolquery = "schools_id='" . stripslashes($_POST['schools_id'][$x]) . "', ";
}
// UPDATE existing record
$dob = $_POST['year'][$x] . '-' . $_POST['month'][$x] . '-' . $_POST['day'][$x];
$stmt = $pdo->prepare('UPDATE students SET '
. "firstname='" . stripslashes($_POST['firstname'][$x]) . "', "
. "lastname='" . stripslashes($_POST['lastname'][$x]) . "', "
. "pronunciation='" . stripslashes($_POST['pronunciation'][$x]) . "', "
. "email='" . stripslashes($_POST['email'][$x]) . "', "
. "address='" . stripslashes($_POST['address'][$x]) . "', "
. "city='" . stripslashes($_POST['city'][$x]) . "', "
. "county='" . stripslashes($_POST['county'][$x]) . "', "
. "province='" . stripslashes($_POST['province'][$x]) . "', "
. "postalcode='" . stripslashes($_POST['postalcode'][$x]) . "', "
. "phone='" . stripslashes($_POST['phone'][$x]) . "', "
. "dateofbirth='$dob', "
. "grade='" . stripslashes($_POST['grade'][$x]) . "', "
. $schoolquery
. "medicalalert='" . stripslashes($_POST['medicalalert'][$x]) . "', "
. "foodreq='" . stripslashes($_POST['foodreq'][$x]) . "', "
. "teachername='" . stripslashes($_POST['teachername'][$x]) . "', "
. "teacheremail='" . stripslashes($_POST['teacheremail'][$x]) . "', "
. "tshirt='" . stripslashes($_POST['tshirt'][$x]) . "' "
. "WHERE id='$students_id'");
$stmt->execute();
echo notice(i18n('%1 %2 successfully updated', array($_POST['firstname'][$x], $_POST['lastname'][$x])));
try {
// UPDATE existing record
$dob = $_POST['year'][$x] . '-' . $_POST['month'][$x] . '-' . $_POST['day'][$x];
$stmt = $pdo->prepare('UPDATE students SET '
. "firstname='" . stripslashes($_POST['firstname'][$x]) . "', "
. "lastname='" . stripslashes($_POST['lastname'][$x]) . "', "
. "pronunciation='" . stripslashes($_POST['pronunciation'][$x]) . "', "
. "email='" . stripslashes($_POST['email'][$x]) . "', "
. "address='" . stripslashes($_POST['address'][$x]) . "', "
. "city='" . stripslashes($_POST['city'][$x]) . "', "
. "county='" . stripslashes($_POST['county'][$x]) . "', "
. "province='" . stripslashes($_POST['province'][$x]) . "', "
. "postalcode='" . stripslashes($_POST['postalcode'][$x]) . "', "
. "phone='" . stripslashes($_POST['phone'][$x]) . "', "
. "dateofbirth='$dob', "
. "grade='" . stripslashes($_POST['grade'][$x]) . "', "
. $schoolquery
. "medicalalert='" . stripslashes($_POST['medicalalert'][$x]) . "', "
. "foodreq='" . stripslashes($_POST['foodreq'][$x]) . "', "
. "teachername='" . stripslashes($_POST['teachername'][$x]) . "', "
. "teacheremail='" . stripslashes($_POST['teacheremail'][$x]) . "', "
. "tshirt='" . stripslashes($_POST['tshirt'][$x]) . "' "
. "WHERE id='$students_id'");
$stmt->execute();
echo notice(i18n('%1 %2 successfully updated', array($_POST['firstname'][$x], $_POST['lastname'][$x])));
} catch (PDOException $exception) {
echo error(i18n('Failed to update student %1 %2. Please ensure all mandatory fields are complete.', array($_POST['firstname'][$x], $_POST['lastname'][$x])));
}
}
/* Update the regfee items link */
if ($config['participant_regfee_items_enable'] == 'yes') {
@ -455,8 +464,8 @@ for ($x = 1; $x <= $numtoshow; $x++) {
echo "</tr>\n";
echo "<tr>\n";
echo ' <td>' . i18n('Teacher Name') . "</td><td><input type=\"text\" name=\"teachername[$x]\" value=\"" . get_value_property_or_default($studentinfo, 'teachername') . "\" /></td>\n";
echo ' <td>' . i18n('Teacher Email') . "</td><td><input type=\"email\" name=\"teacheremail[$x]\" value=\"" . get_value_property_or_default($studentinfo, 'teacheremail') . "\" /></td>\n";
echo ' <td>' . i18n('Teacher Name') . "</td><td><input type=\"text\" name=\"teachername[$x]\" value=\"" . get_value_property_or_default($studentinfo, 'teachername') . "\" />". REQUIREDFIELD ."</td>\n";
echo ' <td>' . i18n('Teacher Email') . "</td><td><input type=\"email\" name=\"teacheremail[$x]\" value=\"" . get_value_property_or_default($studentinfo, 'teacheremail') . "\" />". REQUIREDFIELD ."</td>\n";
echo "</tr>\n";
if ($config['participant_regfee_items_enable'] == 'yes') {

View File

@ -195,6 +195,7 @@ a:hover {
padding: 0px;
margin-left: 30px;
margin-right: 30px;
width: fit-content;
}