Copyright (C) 2005 James 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. */ ?> var]['val'] = $r->val; $var[$r->var]['desc'] = $r->description; $var[$r->var]['category'] = $r->category; $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; } function config_editor_parse_from_http_headers($array_name) { $ans = array(); if(!is_array($_POST[$array_name])) return $ans; $keys = array_keys($_POST[$array_name]); foreach($keys as $id) { if(is_array($_POST[$array_name][$id])) { $ans[$id] = array(); foreach($_POST[$array_name][$id] as $k=>$v) { if($v != '') { $ans[$id][$k]=stripslashes($v); } } } else { $ans[$id] = stripslashes($_POST[$array_name][$id]); } } return $ans; } /* 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 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 conference */ function config_update_variables($conference_id=NULL, $last_conference_id=NULL) { global $config; global $conference; /* 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.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)."')"); } } } $config_editor_actions_done = false; $config_editor_updated = false; function config_editor_handle_actions($category, $conference_id, $array_name) { global $config; global $config_editor_actions_done; $config_vars = config_editor_load($category, $conference_id); $config_editor_actions_done = true; $updated = false; if($_POST['action']=="update") { $var = config_editor_parse_from_http_headers($array_name); $varkeys = array_keys($var); foreach($varkeys as $k) { if(is_array($var[$k])) $val = implode(',',$var[$k]); else $val = $var[$k]; /* If it hasn't changed, don't update it (do a string * compare so numbers aren't interpreted.. php thinks * "1.0" == "1") */ if(strcmp($config[$k], $val) == 0) continue; switch($config_vars[$k]['type']) { case 'number': if(ereg("[0-9]+(\.[0-9]+)?", $val, $regs)) { $val = $regs[0]; } else { $val = 0; } break; } /* Prep for MySQL update */ $val = mysql_escape_string($val); $v = mysql_escape_string(stripslashes($k)); mysql_query("UPDATE config SET val=\"$val\" WHERE var=\"$v\" AND `conferences_id`='$conference_id'"); print mysql_error(); // echo "Saving {$v} = $val
"; $config_editor_updated = true; $updated = true; } if($updated == true) { message_push(happy(i18n("Configuration Updated")));; } return 'update'; } } /* A complete question editor. Just call it with the * 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, $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, $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, $conference_id); echo "
"; echo ""; $varkeys = array_keys($var); //compute the optimal input size to use $biggest=0; foreach($varkeys as $k) { if(strlen($var[$k]['val'])>$biggest) $biggest=strlen($var[$k]['val']); } if($biggest>30) $size=30; else $size=$biggest+1; //make sure size is at minimum 8, this way if all fields are empty you dont end up with 1 character long text boxes if($size<8) $size=8; $line = 1; foreach($varkeys as $k) { $trclass = ($line % 2 == 0) ? "even" : "odd"; $line++; print(""); print(""); print(""; } print("
"); if($var[$k]['desc']) { echo i18n($var[$k]['desc']); } else { echo $k; } print(""); $val = htmlspecialchars($var[$k]['val']); $name = "${array_name}[$k]"; switch($var[$k]['type']) { case "yesno": print(""); break; case "enum": $val = split(',', $val); $values = $var[$k]['type_values']; /* Split values */ /* The PERL regex here matches any string of the form * key=val| , where the = and 'val' and '|' are * optional. val is allowed to contain spaces. Using * preg_match_all runs this regex multiple times, and * creates arrays for each subpattern that matches. * For example, "aa=Aye|bb=Bee Bee|cc|dd=Dee" * Would construct the following Array of Arrays: * Array ( [0] => Array ( [0] => "aa=Aye|", [1] => "bb=Bee Bee|", [2] => "cc|", [3] => "dd=Dee" ), [1] => Array ( [0] => "aa", [1] => "bb", [2] => "cc", [3] => "dd" ), [2] => Array ( [0] => "Aye", [1] => "Bee Bee", [2] => "", [3] => "Dee" ) ) * neat eh? :) We use [1] and [2] to form the keys and * values that we show the user */ preg_match_all("/([^\|=]+)(?:=([^\|]+))?\|?/", $values, $regs); // print_r($regs); print(""); break; case 'multisel': /* same PERL parse statements as above */ $val = split(',', $val); $values = $var[$k]['type_values']; preg_match_all("/([^\|=]+)(?:=([^\|]+))?\|?/", $values, $regs); /* Decide which way to show this list */ $c = count($regs[1]); $rows = 0; if($c > 5) { $rows = intval(($c+2) / 3); print("
"); print("
 "); } else { $rows = $c; } for($x=0; $x<$c; $x++) { if(($x % $rows) == 0 && $rows > 0 && $c > 5) { print(""); } $e_key = trim($regs[1][$x]); $e_val = trim($regs[2][$x]); if($e_val == "") $e_val = $e_key; $ch = (in_array($e_key, $val)) ? 'checked="checked"' : ''; print(""); print(i18n($e_val)."
"); } if($c > 5) print("
"); break; case 'language': print(""); break; case 'theme': print(""); break; default: print("\n"); break; } echo "
"); print("\n"); print("\n"); print("\n"); echo "
"; /* Returns TRUE if config variables were updated */ return $updated; } ?>