diff --git a/fair_main.php b/fair_main.php
index 8706c53e..3ade37a0 100644
--- a/fair_main.php
+++ b/fair_main.php
@@ -41,6 +41,11 @@
*/
send_header("Science Fair Main", array());
+ function tempstatus()
+ {
+ return 'complete';
+ }
+
//only display the named greeting if we have their name
echo i18n("Hello %1",array($_SESSION['name']));
echo " ";
@@ -51,10 +56,10 @@
echo " ";
user_page_summary_begin();
- user_page_summary_item("Contact Information",
- "user_personal.php", "user_personal_info_status", array($u));
- user_page_summary_item("Volunteer Positions",
- "fair_info", "fair_status_info", array($u));
+ user_page_summary_item("Fair Information and Statistics",
+ "fair_stats.php", "tempstatus", array($u));
+ user_page_summary_item("Award Winner Entry",
+ "", "tempstatus", array($u));
$overallstatus = user_page_summary_end(true);
/* Update fair_status */
diff --git a/fair_stats.php b/fair_stats.php
new file mode 100644
index 00000000..fad892ea
--- /dev/null
+++ b/fair_stats.php
@@ -0,0 +1,314 @@
+
+/*
+ This file is part of the 'Science Fair In A Box' project
+ SFIAB Website: http://www.sfiab.ca
+
+ Copyright (C) 2007 James Grant
+ Copyright (C) 2009 David 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.
+*/
+?>
+
+ require_once('common.inc.php');
+ require_once('user.inc.php');
+ user_auth_required('fair');
+ require_once('admin/stats.inc.php');
+
+
+/* Sort out who we're editting */
+if($_POST['users_id'])
+ $eid = intval($_POST['users_id']); /* From a save form */
+else if(array_key_exists('embed_edit_id', $_SESSION))
+ $eid = $_SESSION['embed_edit_id']; /* From the embedded editor */
+else
+ $eid = $_SESSION['users_id']; /* Regular entry */
+
+if($eid != $_SESSION['users_id']) {
+ /* Not editing ourself, we had better be
+ * a committee member */
+ user_auth_required('committee','admin');
+}
+$u = user_load($eid);
+
+switch($_GET['action']) {
+case 'save':
+ $stats = $_POST['stats'];
+ foreach($stats as $k=>$v) {
+ $stats[$k] = mysql_escape_string($stats[$k]);
+ }
+
+ // $str = join(',',$stats);
+ $keys = '`fairs_id`,`year`,`'.join('`,`', array_keys($stats)).'`';
+ $vals = "'{$u['fairs_id']}','{$config['FAIRYEAR']}','".join("','", array_values($stats))."'";
+ mysql_query("DELETE FROM fairs_stats WHERE fairs_id='{$u['fairs_id']}' AND year='{$config['FAIRYEAR']}'");
+ echo mysql_error();
+ mysql_query("INSERT INTO fairs_stats (`id`,$keys) VALUES ('',$vals)");
+ echo mysql_error();
+
+ happy_("Fair Information Saved.");
+ exit;
+}
+
+
+ send_header("Fair Information and Statistics",
+ array('Fair Main' => 'fair_main.php'),
+ "fair_stats"
+ );
+?>
+
+
+
+
+
+
+ echo " ";
+
+/* This was the remote upload code, seems silly to change the config names. server_config really isn't
+* from the server here, it's just our local name */
+
+/* SFIAB config options server side */
+$server_config = array();
+$server_config['participation'] = false;
+$server_config['schools_ext'] = false;
+$server_config['minorities'] = false;
+$server_config['guests'] = false;
+$server_config['sffbc_misc'] = false;
+$server_config['info'] = false;
+$server_config['next_chair'] = false;
+$server_config['scholarships'] = false;
+$server_config['delegates'] = false;
+
+$year = $config['FAIRYEAR'];
+
+ /* Get the stats we want from this fair */
+$q = mysql_query("SELECT * FROM fairs WHERE id='{$u['fairs_id']}'");
+echo mysql_error();
+$fair = mysql_fetch_assoc($q);
+
+$s = split(',', $fair['gather_stats']);
+foreach($s as $k) $server_config[$k] = true;
+
+
+/* Load stats */
+$q = mysql_query("SELECT * FROM fairs_stats WHERE fairs_id='{$u['fairs_id']}'
+ AND year='{$config['FAIRYEAR']}'");
+$stats = mysql_fetch_assoc($q);
+
+/* Print stats */
+
+
+ /* Print all blocks the server requests */
+ echo "';
+ echo " ";
+ echo " ";
+
+/*
+ echo "