2009-10-01 21:03:56 +00:00
|
|
|
<?
|
|
|
|
/*
|
|
|
|
This file is part of the 'Science Fair In A Box' project
|
|
|
|
SFIAB Website: http://www.sfiab.ca
|
|
|
|
|
|
|
|
Copyright (C) 2009 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");
|
|
|
|
require_once("../user.inc.php");
|
|
|
|
user_auth_required('committee', 'admin');
|
2009-10-06 21:32:13 +00:00
|
|
|
switch($_GET['action']){
|
|
|
|
case "campaigninfo_save":
|
|
|
|
save_campaign_info();
|
|
|
|
exit;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
function save_campaign_info(){
|
|
|
|
if($_POST["campaign_id"] == -1){
|
|
|
|
// this is a new campaign. let's create it.
|
|
|
|
|
|
|
|
// first, we'll make sure we have some reasonable data
|
|
|
|
if(array_key_exists('name', $_POST)) $name = $_POST['name'];
|
|
|
|
if($name == NULL) $name = i18n("New Campaign");
|
|
|
|
|
|
|
|
if(array_key_exists('startdate', $_POST)) $startdate = $_POST['startdate'];
|
|
|
|
if($startdate == NULL) $startdate = date("Y-m-d");
|
|
|
|
|
|
|
|
if(array_key_exists('enddate', $_POST)) $enddate = $_POST['enddate'];
|
|
|
|
if($enddate == NULL) $enddate = date("Y-m-d");
|
|
|
|
|
|
|
|
// now we need to create some default data to fill the record
|
|
|
|
$type = ""; //FIXME - these need more sensible and controlled values
|
2009-10-07 17:58:11 +00:00
|
|
|
$active = "yes";
|
2009-10-06 21:32:13 +00:00
|
|
|
$target = 0;
|
|
|
|
$goal_id = "";
|
2009-10-07 17:58:11 +00:00
|
|
|
$fiscalyear = $config['FISCALYEAR'];
|
|
|
|
|
|
|
|
$query = "INSERT INTO fundraising_campaigns (name, type, startdate, enddate, followupdate, active, target, fundraising_goal, fiscalyear) VALUES (
|
|
|
|
'$campagin_name,'$type','$startdate',
|
|
|
|
'$enddate',
|
|
|
|
DATE_ADD('$startdate', INTERVAL 1 MONTH),
|
|
|
|
'$active',
|
|
|
|
'$target',
|
|
|
|
'$goal_id',
|
|
|
|
'$fiscalyear')";
|
2009-10-06 21:32:13 +00:00
|
|
|
|
|
|
|
mysql_query($query);
|
|
|
|
|
|
|
|
// Let's grab the new campaign ID for further use
|
|
|
|
$id = mysql_insert_id();
|
|
|
|
echo json_encode(array("id"=>$id));
|
|
|
|
|
|
|
|
}else{
|
|
|
|
$id = $_POST["campaign_id"];
|
|
|
|
// we are updating an existing campaign.
|
|
|
|
echo "Updating an existing campaign<br/>\n";
|
|
|
|
|
|
|
|
// build our query
|
|
|
|
$formfields = array('name', 'type', 'startdate', 'enddate', 'active', 'target', 'fundraising_goal', 'fiscalyear');
|
|
|
|
$updates = false;
|
|
|
|
$query = "UPDATE fundraising_campaigns SET ";
|
|
|
|
foreach($formfields AS $fieldname){
|
|
|
|
if(array_key_exists($fieldname, $_POST)){
|
|
|
|
$updates = true;
|
|
|
|
$query .= $fieldName . "='" . mysql_escape_string(stripslashes($_POST[$fieldname])) . ",";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($updates = true){
|
|
|
|
$query = rtrim($query, ",") . " WHERE id=" . $id;
|
|
|
|
}
|
|
|
|
|
|
|
|
// and execute it
|
|
|
|
echo $query; //FIXME - not yet tested
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
send_header("Campaign Management",
|
2009-10-01 21:03:56 +00:00
|
|
|
array('Committee Main' => 'committee_main.php',
|
|
|
|
'Administration' => 'admin/index.php',
|
|
|
|
'Fundraising' => 'admin/fundraising.php'),
|
|
|
|
"fundraising"
|
|
|
|
);
|
|
|
|
?>
|
2009-10-06 21:32:13 +00:00
|
|
|
|
2009-10-01 21:03:56 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
|
|
$("#campaignaccordion").accordion();
|
2009-10-06 21:32:13 +00:00
|
|
|
update_datefields();
|
2009-10-01 21:03:56 +00:00
|
|
|
});
|
2009-10-06 21:32:13 +00:00
|
|
|
|
|
|
|
function update_datefields(){
|
|
|
|
// create the date pickers for our form
|
|
|
|
$("#startdate").datepicker({
|
|
|
|
changeMonth: true,
|
|
|
|
changeYear: true,
|
|
|
|
dateFormat: 'yy-mm-dd'
|
|
|
|
});
|
|
|
|
$("#enddate").datepicker({
|
|
|
|
changeMonth: true,
|
|
|
|
changeYear: true,
|
|
|
|
dateFormat: 'yy-mm-dd'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function campaigninfo_save() {
|
|
|
|
//if we're creating we need to do the post, and get the id it returns, so we can re-open the popup window with that id
|
|
|
|
if($("#campaign_id").val()==-1) {
|
|
|
|
$.post("<?$_SERVER['PHP_SELF']?>?action=campaigninfo_save", $("#campaigninfo").serializeArray(),
|
|
|
|
function(json) {
|
|
|
|
open_editor(json.id);
|
|
|
|
},
|
|
|
|
"json");
|
|
|
|
} else {
|
|
|
|
$("#debug").load("<?$_SERVER['PHP_SELF']?>?action=campaigninfo_save", $("#campaigninfo").serializeArray());
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function open_editor(id) {
|
|
|
|
alert("open_editor");
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:03:56 +00:00
|
|
|
</script>
|
2009-10-06 21:32:13 +00:00
|
|
|
|
2009-10-01 21:03:56 +00:00
|
|
|
<div id="campaignaccordion" style="width: 780px;\">
|
|
|
|
<h3><a href="#"><?=i18n("Create New Campaign")?></a></h3>
|
|
|
|
<div id="campaignnew">
|
2009-10-06 21:32:13 +00:00
|
|
|
<form id="campaigninfo" method="post" action="<?=$_SERVER['PHP_SELF']?>" onsubmit="return campaigninfo_save(-1)">
|
|
|
|
<table class="tableedit">
|
|
|
|
<tr>
|
|
|
|
<td><?=i18n("Campaign Name")?></td>
|
|
|
|
<td><input type="text" name="name"></td>
|
|
|
|
<td><?=i18n("Start Date")?></td>
|
2009-10-07 17:58:11 +00:00
|
|
|
<td><input type="text" id="startdate" name="startdate" class="date" value="<?=date("Y-m-d")?>"/></td>
|
2009-10-06 21:32:13 +00:00
|
|
|
<td><?=i18n("End Date")?></td>
|
2009-10-07 17:58:11 +00:00
|
|
|
<td><input type="text" id="enddate" name="enddate" class="date"/></td>
|
2009-10-06 21:32:13 +00:00
|
|
|
<td><input type="submit" value="<?=i18n("add");?>"></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<input type="hidden" name="campaign_id" value="-1" />
|
|
|
|
</form>
|
2009-10-01 21:03:56 +00:00
|
|
|
</div>
|
2009-10-06 21:32:13 +00:00
|
|
|
|
2009-10-01 21:03:56 +00:00
|
|
|
<h3><a href="#">Campaign 123</a></h3>
|
|
|
|
<div id="campaign_123">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?
|
|
|
|
send_footer();
|
|
|
|
?>
|