2007-01-09 19:05:23 +00:00
|
|
|
<?
|
|
|
|
/*
|
|
|
|
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 <info@scitechontario.org>
|
|
|
|
Copyright (C) 2005 James Grant <james@lightbox.org>
|
|
|
|
|
|
|
|
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("../common.inc.php");
|
2007-11-21 17:02:09 +00:00
|
|
|
require_once("../user.inc.php");
|
2007-11-18 23:50:23 +00:00
|
|
|
user_auth_required('committee', 'admin');
|
2007-01-09 19:05:23 +00:00
|
|
|
require("../tours.class.php");
|
|
|
|
require("../tableeditor.class.php");
|
|
|
|
|
2007-11-18 23:50:23 +00:00
|
|
|
send_header("Tour Management",
|
|
|
|
array('Committee Main' => 'committee_main.php',
|
|
|
|
'Administration' => 'admin/index.php')
|
|
|
|
);
|
2007-01-09 19:05:23 +00:00
|
|
|
?>
|
|
|
|
<script language="javascript" type="text/javascript">
|
|
|
|
|
|
|
|
function opentoursinfo(id)
|
|
|
|
{
|
|
|
|
if(id)
|
|
|
|
currentid=id;
|
|
|
|
else
|
|
|
|
currentid=document.forms.tours["tourslist[]"].options[document.forms.tours["tourslist[]"].selectedIndex].value;
|
|
|
|
|
|
|
|
window.open("tours_info.php?id="+currentid,"JudgeInfo","location=no,menubar=no,directories=no,toolbar=no,width=770,height=500,scrollbars=yes");
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?
|
|
|
|
|
|
|
|
$icon_path = $config['SFIABDIRECTORY']."/images/16/";
|
|
|
|
$icon_exitension = $config['icon_extension'];
|
|
|
|
|
|
|
|
|
|
|
|
$editor = new TableEditor('tours');
|
|
|
|
|
|
|
|
// $editor->setDebug(true);
|
|
|
|
$editor->filterList("(tours.year={$config['FAIRYEAR']} OR tours.year IS NULL)");
|
|
|
|
|
|
|
|
$editor->execute();
|
|
|
|
|
|
|
|
|
|
|
|
send_footer();
|
|
|
|
?>
|