From 4739e3fdf0b946d562c6c71e17495923b051c6e8 Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 22 Jan 2010 19:26:31 +0000 Subject: [PATCH] Add a Registration tab to the student editor (regnum, fair, status) --- admin/registration_list.php | 31 +++++++++---- admin/student_editor.php | 90 +++++++++++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+), 8 deletions(-) diff --git a/admin/registration_list.php b/admin/registration_list.php index d1d71937..0a5b23de 100644 --- a/admin/registration_list.php +++ b/admin/registration_list.php @@ -73,9 +73,11 @@ case 'delete':
Loading...
Loading...
+
Loading...
@@ -180,14 +182,6 @@ function update_project() } ); - - /* - var id=sponsor_id; - $.getJSON("?action=activityinfo_load&id="+id, - function(json){ - $("#sponsor_id").val(json.id); - }); - */ return false; } @@ -205,6 +199,24 @@ function delete_registration(id) } +function update_reg() +{ + var id = registrations_id; + $("#editor_tab_reg").load("student_editor.php?action=registration_load&id="+id, '', + function(responseText, textStatus, XMLHttpRequest) { + /* Attach to save button */ + $("#registration_save").click(function() { + var id = registrations_id; + $("#debug").load("student_editor.php?action=registration_save&id="+id, $("#registration_form").serializeArray()); + return false; + }); + + } + ); + return false; +} + + $(document).ready(function() { @@ -242,6 +254,9 @@ $(document).ready(function() { case 'editor_tab_project': update_project(); break; + case 'editor_tab_reg': + update_reg(); + break; default: break; } diff --git a/admin/student_editor.php b/admin/student_editor.php index f6e5ebc6..74be5274 100644 --- a/admin/student_editor.php +++ b/admin/student_editor.php @@ -30,6 +30,14 @@ $registrations_id = intval($_GET['id']); $action = $_GET['action']; switch($action) { +case 'registration_load': + registration_load(); + exit; + +case 'registration_save': + registration_save(); + exit; + case 'students_load': students_load(); exit; @@ -374,4 +382,86 @@ echo "
"; } +function registration_load() +{ + global $registrations_id, $config; + + /* Load reg data */ + $q = mysql_query("SELECT * FROM registrations WHERE id='$registrations_id'"); + if(mysql_num_rows($q) != 1) + $r = array(); + else { + $r = mysql_fetch_assoc($q); + /* Get the fair from the project */ + $q = mysql_query("SELECT fairs_id FROM projects WHERE registrations_id='$registrations_id'"); + if(mysql_num_rows($q) == 1) { + $p = mysql_fetch_assoc($q); + $r['fairs_id'] = $p['fairs_id']; + } + } + + /* Load fairs */ + $fairs = array(); + $q = mysql_query("SELECT * FROM fairs WHERE type='feeder'"); + while(($f = mysql_fetch_assoc($q))) { + $fairs[$f['id']] = $f; + } + + /* Print form */ + $status = array('new'=>'New', 'open'=>'Open','paymentpending'=>'Payment Pending', 'complete'=>'Complete'); + +?> +
+ + + + + + + + + + +
:
:
:
+

+ +
+