Copyright (C) 2005 James Grant Copyright (C) 2007 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. */ ?> "; $sel = ($val == 'yes') ? 'selected="selected"' : ''; echo ""; $sel = ($val == 'no') ? 'selected="selected"' : ''; echo ""; echo ""; } if($_SESSION['embed'] == true) { $u = user_load($_SESSION['embed_edit_id']); } else { user_auth_required('fair'); $u = user_load($_SESSION['users_id']); } $fair_type = array('feeder' => 'Feeder Fair', 'sfiab' => 'SFIAB Upstream', 'ysf' => 'YSF/CWSF Upstream'); if($_POST['action']=="save") { $id = $_POST['id']; if(trim($id) == '') { $q = mysql_query("INSERT INTO fairs(`id`,`name`) VALUES('','new entry')"); $id = mysql_insert_id(); } else { $id = intval($id); } $name = mysql_escape_string(stripslashes($_POST['name'])); $abbrv = mysql_escape_string(stripslashes($_POST['abbrv'])); $url = mysql_escape_string($_POST['url']); $website = mysql_escape_string($_POST['website']); $type = array_key_exists($_POST['type'], $fair_type) ? $_POST['type'] : ''; $username = mysql_escape_string(stripslashes($_POST['username'])); $password = mysql_escape_string(stripslashes($_POST['password'])); $enable_stats = ($_POST['enable_stats'] == 'yes') ? 'yes' : 'no'; $enable_awards = ($_POST['enable_awards'] == 'yes') ? 'yes' : 'no'; $enable_winners = ($_POST['enable_winners'] == 'yes') ? 'yes' : 'no'; $q = mysql_query("UPDATE fairs SET `name`='$name', `abbrv`='$abbrv', `url`='$url', `website`='$website', `type`='$type' , `username`='$username', `password`='$password', `enable_stats`='$enable_stats', `enable_awards`='$enable_awards', `enable_winners`='$enable_winners' WHERE id=$id"); $u['fairs_id'] = $id; user_save($u); message_push(notice(i18n("Fair Informaiton successfully updated"))); } /* update overall status */ fair_status_update($u); if($_SESSION['embed'] != true) { //output the current status $newstatus=fair_status_info($u); if($newstatus!='complete') message_push(error(i18n("Fair Information Incomplete"))); else message_push(happy(i18n("Fair Information Complete"))); } if($_SESSION['embed'] == true) { echo "
"; display_messages(); echo "

".i18n('Fair Information')."

"; echo "
"; } else { //send the header send_header("Fair Information", array("Science Fair Main" => "fair_main.php") ); } /* Load the fair info */ $q = mysql_query("SELECT * FROM fairs WHERE id={$u['fairs_id']}"); if(mysql_num_rows($q)) { $f = mysql_fetch_assoc($q); } else { $f = array(); } $s = ($_SESSION['embed'] == true) ? $_SESSION['embed_submit_url'] : 'fair_info.php'; echo "
\n"; echo "\n"; echo "\n"; echo "\n"; echo '"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo "
'.i18n('Fair Name').''; echo ""; echo '
'.i18n('Fair Abbreviation').''; echo ""; echo '
'.i18n('Fair Type').''; echo "
'.i18n('URL').''; if($f['url'] == '') $f['url'] = 'http://'; echo ""; echo '
'.i18n('Website').''; if($f['website'] == '') $f['website'] = 'http://'; echo ""; echo '
'.i18n('Username').''; echo ""; echo '
'.i18n('Password').''; echo ""; echo '
'.i18n('Enable stats').''; yesno('enable_stats', $f['enable_stats']); echo '
'.i18n('Enable awards download').''; yesno('enable_awards', $f['enable_awards']); echo '
'.i18n('Enable winners upload').''; yesno('enable_winners', $f['enable_winners']); echo '
"; echo "
"; echo "\n"; echo "
"; echo "
"; if($_SESSION['embed'] != true) send_footer(); ?>