diff --git a/config/index.php b/config/index.php index 8db05549..0ea0ae98 100644 --- a/config/index.php +++ b/config/index.php @@ -34,7 +34,8 @@ if($conference['type']=='scienceolympics') { echo "
".theme_icon("configuration_variables")." ".i18n("Configuration Variables")." | ";
+ echo " ".theme_icon("configuration_variables")." ".i18n("System Configuration Variables")." | ";
+ echo " ".theme_icon("configuration_variables")." ".i18n("Conference Configuration Variables")." | ";
echo " ".theme_icon("important_dates")." ".i18n("Important Dates")." | ";
//echo " ".theme_icon("project_age_categories")." ".i18n("Age Categories")." | ";
echo " ".theme_icon("images")." ".i18n("Images (Fair Logo)")." | ";
@@ -45,7 +46,8 @@
else {
echo "
".theme_icon("configuration_variables")." ".i18n("Configuration Variables")." | ";
+ echo " ".theme_icon("configuration_variables")." ".i18n("System Configuration Variables")." | ";
+ echo " ".theme_icon("configuration_variables")." ".i18n("Conference Configuration Variables")." | ";
echo " ".theme_icon("important_dates")." ".i18n("Important Dates")." | ";
echo " ".theme_icon("project_age_categories")." ".i18n("Project Age Categories")." | ";
echo " ".theme_icon("project_divisions")." ".i18n("Project Divisions")." | ";
diff --git a/config/systemvariables.php b/config/systemvariables.php
new file mode 100644
index 00000000..9717086e
--- /dev/null
+++ b/config/systemvariables.php
@@ -0,0 +1,83 @@
+
+/*
+ This file is part of the 'Science Fair In A Box' project
+ SFIAB Website: http://www.sfiab.ca
+
+ Copyright (C) 2005 Sci-Tech Ontario Inc
";
+ echo "
| ";
+
+ if($category) {
+ if($category=="Special") {
+ echo error(i18n("Warning, modifying values on this configuration variables page could cause your SFIAB to stop working. Only change anything on this page if you really know what you are doing"));
+ }
+
+ echo "".i18n($category).""; + config_editor($category, 0, "var", $_SERVER['PHP_SELF']); +} +else { + echo i18n("Please choose a configuration category"); +} + + echo " |
"; @@ -90,34 +82,8 @@ echo " | ";
if($category) {
- if($category=="Special") {
- echo "".i18n("Special Configuration Settings").""; - echo ""; - } - else { -// echo "".i18n("Configuration settings for fair year %1",array($config['FAIRYEAR']),array("fair year")).""; - echo "".i18n($category)." ({$config['FAIRYEAR']})"; - - config_editor($category, $config['FAIRYEAR'], "var", $_SERVER['PHP_SELF']); - } + echo "".i18n($category)." ({$conference['name']})"; + config_editor($category, $conference['id'], "var", $_SERVER['PHP_SELF']); } else { echo i18n("Please choose a configuration category"); diff --git a/config_editor.inc.php b/config_editor.inc.php index b10e7eef..60c7a10d 100644 --- a/config_editor.inc.php +++ b/config_editor.inc.php @@ -23,9 +23,9 @@ ?> -function config_editor_load($category, $year) +function config_editor_load($category, $conference_id) { - $query = "SELECT * FROM config WHERE year='$year' AND category='$category' ORDER BY ord"; + $query = "SELECT * FROM config WHERE conferences_id='$conference_id' AND category='$category' ORDER BY ord"; $q = mysql_query($query); print(mysql_error()); @@ -37,6 +37,9 @@ function config_editor_load($category, $year) $var[$r->var]['ord'] = $r->ord; $var[$r->var]['type'] = $r->type; $var[$r->var]['type_values'] = $r->type_values; + $var[$r->var]['conferences_id'] = $r->conferences_id; + $var[$r->var]['section'] = $r->section; + $var[$r->var]['conferencetypes'] = $r->conferencetypes; } return $var; } @@ -62,67 +65,78 @@ function config_editor_parse_from_http_headers($array_name) return $ans; } -/* Ensure the fairyear has all variables that are in -1. This is called: +/* Ensure the conferenceid has all variables that are in -1. This is called: * - From the database update script (which could add new variables to - * the -1 year, and we want them automatically copied to the current year + * the -1 conference, and we want them automatically copied to the current conference + +FIXME: this comment is wrong, but im leaving it here for now so we dont forget +FIXME: we need to update the rollover! * - From the rollover script to copy all last year variables to * the new year - * - After an install to copy all the variables to the current year + + * - After an install to copy all the variables to the current conference */ -function config_update_variables($fairyear=NULL, $lastfairyear=NULL) +function config_update_variables($conference_id=NULL, $last_conference_id=NULL) { global $config; + global $conference; - /* if fairyear isn't specified... */ - if($fairyear == NULL) $fairyear = $config['FAIRYEAR']; - if($lastfairyear == NULL) $lastfairyear = $fairyear - 1; + /* if conference isn't specified... */ + if($conference_id == NULL && $last_conference_id==NULL) { + //FIXME: what the heck do we do? + } + else { + // if($lastfairyear == NULL) $lastfairyear = $fairyear - 1; - /* The master list of variables is the year=-1, grab - * ALL config variables that exist for -1 but - * do NOT exist for $fairyear */ - $q = "SELECT config.var FROM `config` - LEFT JOIN `config` AS C2 ON(config.var=C2.var - AND C2.year='$fairyear') - WHERE config.year=-1 AND C2.year IS NULL"; - $r = mysql_query($q); - while($i = mysql_fetch_assoc($r)) { - $var = $i['var']; - /* See if this var exists for last year or - * the -1 year, prefer last year's value */ - $q = "SELECT * FROM `config` - WHERE config.var='$var' - AND (config.year='$lastfairyear' - OR config.year='-1') - ORDER BY config.year DESC"; - $r2 = mysql_query($q); - if(mysql_num_rows($r2) < 1) { - /* Uhoh, this shouldn't happen */ - echo "ERROR, Variable '$var' doesn't exist"; - exit; + /* The master list of variables is the year=-1, grab + * ALL config variables that exist for -1 but + * do NOT exist for $fairyear */ + $q = "SELECT config.var FROM `config` + LEFT JOIN `config` AS C2 ON(config.var=C2.var + AND C2.conferences_id='$conference_id') + WHERE config.conferences_id=-1 AND C2.conferences_id IS NULL"; + $r = mysql_query($q); + while($i = mysql_fetch_assoc($r)) { + $var = $i['var']; + /* See if this var exists for last year or + * the -1 year, prefer last year's value */ + $q = "SELECT * FROM `config` + WHERE config.var='$var' + AND (config.conferences_id='$last_conference_id' + OR config.conferences_id='-1') + ORDER BY config.conferences_id DESC"; + $r2 = mysql_query($q); + if(mysql_num_rows($r2) < 1) { + /* Uhoh, this shouldn't happen */ + echo "ERROR, Variable '$var' doesn't exist"; + exit; + } + $v = mysql_fetch_object($r2); + + mysql_query("INSERT INTO config (var,val,category,type,type_values,ord,description,conferences_id,section,conferencetypes) VALUES ( + '".mysql_escape_string($v->var)."', + '".mysql_escape_string($v->val)."', + '".mysql_escape_string($v->category)."', + '".mysql_escape_string($v->type)."', + '".mysql_escape_string($v->type_values)."', + '".mysql_escape_string($v->ord)."', + '".mysql_escape_string($v->description)."', + '".mysql_escape_string($conference_id)."', + '".mysql_escape_string($v->section)."', + '".mysql_escape_string($v->conferencetypes)."')"); } - $v = mysql_fetch_object($r2); - - mysql_query("INSERT INTO config (var,val,category,type,type_values,ord,description,year) VALUES ( - '".mysql_escape_string($v->var)."', - '".mysql_escape_string($v->val)."', - '".mysql_escape_string($v->category)."', - '".mysql_escape_string($v->type)."', - '".mysql_escape_string($v->type_values)."', - '".mysql_escape_string($v->ord)."', - '".mysql_escape_string($v->description)."', - '$fairyear')"); } } $config_editor_actions_done = false; $config_editor_updated = false; -function config_editor_handle_actions($category, $year, $array_name) +function config_editor_handle_actions($category, $conference_id, $array_name) { global $config; global $config_editor_actions_done; - $config_vars = config_editor_load($category, $year); + $config_vars = config_editor_load($category, $conference_id); $config_editor_actions_done = true; $updated = false; @@ -155,7 +169,7 @@ function config_editor_handle_actions($category, $year, $array_name) $v = mysql_escape_string(stripslashes($k)); mysql_query("UPDATE config SET val=\"$val\" WHERE var=\"$v\" - AND `year`='$year'"); + AND `conferences_id`='$conference_id'"); print mysql_error(); // echo "Saving {$v} = $val"; $config_editor_updated = true; @@ -169,25 +183,25 @@ function config_editor_handle_actions($category, $year, $array_name) } /* A complete question editor. Just call it with the - * section you want to edit, a year, the array_name to use for + * section you want to edit, a conference, the array_name to use for * POSTing and GETting the questions (so you can put more than one * edtior on a single page), and give it $_SERVER['PHP_SELF'], because * php_self inside this function is this file. * FUTURE WORK: it would be nice to hide the order, and just implement * a bunch of up/down arrows, and dynamically compute the order for * all elements */ -function config_editor($category, $year, $array_name, $self) +function config_editor($category, $conference_id, $array_name, $self) { global $config; global $config_editor_actions_done, $config_editor_updated; if($config_editor_actions_done == false) { - config_editor_handle_actions($category, $year, $array_name); + config_editor_handle_actions($category, $conference_id, $array_name); } /* Load questions, then handle up and down, because with up and down we * have to modify 2 questions to maintain the order */ - $var = config_editor_load($category, $year); + $var = config_editor_load($category, $conference_id); echo " |