forked from science-ation/science-ation
237 lines
7.7 KiB
PHP
237 lines
7.7 KiB
PHP
<?php
|
|
require_once('common.inc.php');
|
|
require_once('form.inc.php');
|
|
require_once('user.inc.php');
|
|
require_once('incomplete.inc.php');
|
|
|
|
$mysqli = sfiab_init('student');
|
|
|
|
$u = user_load($mysqli);
|
|
$closed = sfiab_registration_is_closed($u);
|
|
|
|
|
|
$page_id = 's_personal';
|
|
|
|
$action = '';
|
|
if(array_key_exists('action', $_POST)) {
|
|
$action = $_POST['action'];
|
|
}
|
|
|
|
switch($action) {
|
|
case 'save':
|
|
if($closed) exit();
|
|
|
|
$old_grade = $u['grade'];
|
|
post_text($u['firstname'],'firstname');
|
|
post_text($u['lastname'],'lastname');
|
|
post_text($u['pronounce'],'pronounce');
|
|
post_text($u['sex'],'sex');
|
|
post_text($u['birthdate'],'birthdate');
|
|
post_text($u['phone1'],'phone1');
|
|
post_text($u['address'],'address');
|
|
post_text($u['address2'],'address2');
|
|
post_text($u['city'],'city');
|
|
post_text($u['province'],'province');
|
|
post_text($u['postalcode'],'postalcode');
|
|
post_int($u['schools_id'],'schools_id');
|
|
post_int($u['grade'],'grade');
|
|
post_text($u['s_teacher'],'s_teacher');
|
|
post_text($u['s_teacher_email'],'s_teacher_email');
|
|
post_text($u['medicalert'],'medicalert');
|
|
|
|
/* If the grade changed, clear the tours */
|
|
if($old_grade !== $u['grade']) {
|
|
$u['tour_id_pref'][0] = NULL;
|
|
$u['tour_id_pref'][2] = NULL;
|
|
$u['tour_id_pref'][1] = NULL;
|
|
}
|
|
|
|
/* Scrub data */
|
|
$update = array();
|
|
|
|
filter_phone($u['phone1']);
|
|
$update['phone1'] = $u['phone1'];
|
|
|
|
if($u['birthdate'] !== NULL) {
|
|
$d = date_parse($u['birthdate']);
|
|
if($d['year'] > 1900 && $d['month'] > 0 && $d['day'] > 0) {
|
|
$u['birthdate'] = sprintf("%04d-%02d-%02d", $d['year'], $d['month'], $d['day']);
|
|
$update['birthdate'] = $u['birthdate'];
|
|
} else {
|
|
$update['birthdate'] = '';
|
|
$u['birthdate'] = NULL;
|
|
}
|
|
}
|
|
user_save($mysqli, $u);
|
|
|
|
/* If the grade changed, also recomputes the category (needs the user to be updated and
|
|
* saved first) */
|
|
if($old_grade !== $u['grade']) {
|
|
$p = project_load($mysqli, $u['s_pid']);
|
|
project_update_category($mysqli, $p);
|
|
project_save($mysqli, $p);
|
|
}
|
|
|
|
incomplete_check($mysqli, $ret, $u, $page_id, true);
|
|
form_ajax_response(array('status'=>0, 'missing'=>$ret, 'val'=>$update));
|
|
exit();
|
|
}
|
|
|
|
$help = '
|
|
<ul>
|
|
<li><b>Name Pronounciation Key</b> - If your name is often mis-pronounced, describe how to properly pronounce it.
|
|
<li><b>Birthdate</b> - In the format: YYYY-MM-DD. It\'ll take most values and attempt to convert them.
|
|
<li><b>School</b> - If your school doesn\'t appear in the list, please contact the committee to have it added.
|
|
</ul>';
|
|
|
|
sfiab_page_begin($u, "Student Personal", $page_id, $help);
|
|
|
|
?>
|
|
|
|
<div data-role="page" id="<?=$page_id?>" class="sfiab_page" >
|
|
|
|
<?php
|
|
$form_id = $page_id.'_form';
|
|
incomplete_check($mysqli, $fields, $u, $page_id);
|
|
form_page_begin($page_id, $fields);
|
|
form_disable_message($page_id, $closed, $u['s_accepted']);
|
|
|
|
$q=$mysqli->query("SELECT id,school,city FROM schools WHERE year='{$config['year']}' ORDER by city,school");
|
|
while($r=$q->fetch_assoc()) {
|
|
$schools[$r['id']] = "{$r['city']} - {$r['school']}";
|
|
}
|
|
|
|
list($min_grade, $max_grade) = categories_grade_range($mysqli);
|
|
for($x=$min_grade;$x<=$max_grade;$x++) $grades[$x] = $x;
|
|
|
|
$d = array("A"=>'San', "B"=>"Los", "C"=>"Vanc", "D"=>"Tor");
|
|
|
|
form_begin($form_id, 's_personal.php', $closed);
|
|
form_text($form_id, 'firstname', "First Name", $u);
|
|
form_text($form_id, 'lastname', "Last Name", $u);
|
|
form_text($form_id, 'pronounce', "Name Pronunciation Key", $u);
|
|
form_radio_h($form_id, 'sex', 'Gender', array( 'male' => 'Male', 'female' => 'Female'), $u);
|
|
form_text($form_id, 'birthdate', "Date of Birth", $u, 'date');
|
|
form_text($form_id, 'phone1', "Phone", $u, 'tel');
|
|
form_text($form_id, 'address', 'Address 1', $u);
|
|
form_text($form_id, 'address2', 'Address 2', $u);
|
|
form_text($form_id, 'city', 'City', $u);
|
|
form_province($form_id, 'province', 'Province / Territory', $u);
|
|
form_text($form_id, 'postalcode', 'Postal Code', $u);
|
|
form_select_filterable($form_id, 'schools_id','School', $schools, $u);
|
|
form_select($form_id, 'grade', 'Grade', $grades, $u);
|
|
form_text($form_id, 's_teacher', 'Teacher Name', $u);
|
|
form_text($form_id, 's_teacher_email', 'Teacher E-Mail', $u);
|
|
form_text($form_id, 'medicalert', 'Medical Alert Info', $u);
|
|
form_submit($form_id, 'save', 'Save', 'Information Saved');
|
|
form_end($form_id);
|
|
|
|
?>
|
|
|
|
<p><b>Note:</b> Changing your grade will delete your tour selections, special award selections, and could change your project Age Category.
|
|
</div>
|
|
|
|
<script>
|
|
|
|
var lv=null;
|
|
|
|
$( "#<?=$form_id?>_schools_id" ).change(function() {
|
|
/* When the school selector is changed, clear the search and refresh the select. This doesn't work prefectly, but
|
|
* it prevents the dialog reopening without a seaerch box */
|
|
$("input[data-type='search']").val("");
|
|
$("input[data-type='search']").trigger("change");
|
|
});
|
|
|
|
|
|
|
|
( function( $ ) {
|
|
function pageIsSelectmenuDialog( page ) {
|
|
var isDialog = false,
|
|
id = page && page.attr( "id" );
|
|
$( ".filterable-select" ).each( function() {
|
|
if ( $( this ).attr( "id" ) + "-dialog" === id ) {
|
|
isDialog = true;
|
|
return false;
|
|
}
|
|
});
|
|
return isDialog;
|
|
}
|
|
|
|
|
|
$.mobile.document
|
|
// Upon creation of the select menu, we want to make use of the fact that the ID of the
|
|
// listview it generates starts with the ID of the select menu itself, plus the suffix "-menu".
|
|
// We retrieve the listview and insert a search input before it.
|
|
.on( "selectmenucreate", ".filterable-select", function( event ) {
|
|
var input,
|
|
selectmenu = $( event.target ),
|
|
list = $( "#" + selectmenu.attr( "id" ) + "-menu" ),
|
|
form = list.jqmData( "filter-form" );
|
|
// We store the generated form in a variable attached to the popup so we avoid creating a
|
|
// second form/input field when the listview is destroyed/rebuilt during a refresh.
|
|
if ( !form ) {
|
|
input = $( "<input data-type='search'></input>" );
|
|
form = $( "<form></form>" ).append( input );
|
|
input.textinput();
|
|
list
|
|
.before( form )
|
|
.jqmData( "filter-form", form ) ;
|
|
form.jqmData( "listview", list );
|
|
}
|
|
// Instantiate a filterable widget on the newly created selectmenu widget and indicate that
|
|
// the generated input form element is to be used for the filtering.
|
|
selectmenu
|
|
.filterable({
|
|
input: input,
|
|
children: "> option[value]"
|
|
})
|
|
// Rebuild the custom select menu's list items to reflect the results of the filtering
|
|
// done on the select menu.
|
|
.on( "filterablefilter", function() {
|
|
selectmenu.selectmenu( "refresh" );
|
|
});
|
|
|
|
})
|
|
.on( "pagecontainerbeforeshow", function( event, data ) {
|
|
var listview, form;
|
|
// We only handle the appearance of a dialog generated by a filterable selectmenu
|
|
if ( !pageIsSelectmenuDialog( data.toPage ) ) {
|
|
return;
|
|
}
|
|
listview = data.toPage.find( "ul" );
|
|
lv = listview;
|
|
form = listview.jqmData( "filter-form" );
|
|
// Attach a reference to the listview as a data item to the dialog, because during the
|
|
// pagecontainerhide handler below the selectmenu widget will already have returned the
|
|
// listview to the popup, so we won't be able to find it inside the dialog with a selector.
|
|
|
|
// DG: this listview thing doesn't work, use the lv global variable and it all works.
|
|
// it fails on JQM's mobile demo site
|
|
data.toPage.jqmData( "listview", listview );
|
|
// Place the form before the listview in the dialog.
|
|
listview.before( form );
|
|
})
|
|
// After the dialog is closed, the form containing the filter input is returned to the popup.
|
|
.on( "pagecontainerhide", function( event, data ) {
|
|
var listview, form;
|
|
// We only handle the disappearance of a dialog generated by a filterable selectmenu
|
|
if ( !pageIsSelectmenuDialog( data.toPage ) ) {
|
|
return;
|
|
}
|
|
listview = data.prevPage.jqmData( "listview" );
|
|
form = lv.jqmData( "filter-form" );
|
|
// form = listview.jqmData( "filter-form" );
|
|
// Put the form back in the popup. It goes ahead of the listview.
|
|
lv.before( form );
|
|
// listview.before( form );
|
|
});
|
|
|
|
})( jQuery );
|
|
</script>
|
|
|
|
|
|
|
|
<?php
|
|
sfiab_page_end();
|
|
?>
|