2009-09-09 00:26:12 +00:00
|
|
|
<?
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($_POST['action'] == 'funddelete' && $_POST['delete']) {
|
|
|
|
// first lookup all the sponsorships inside the fund
|
|
|
|
$id = intval($_POST['delete']);
|
2025-02-09 17:24:37 +00:00
|
|
|
$q = $pdo->prepare("SELECT * FROM fundraising_goals WHERE id=? AND year=?");
|
|
|
|
$q->execute([$id,$config['FISCALYEAR']]);
|
2025-01-29 03:30:48 +00:00
|
|
|
$f = $q->fetch(PDO::FETCH_OBJ);
|
|
|
|
// hold yer horses, no deleting system funds!
|
|
|
|
if ($f) {
|
|
|
|
if ($f->system == 'no') {
|
2025-02-09 17:24:37 +00:00
|
|
|
$stmt = $pdo->prepare("DELETE FROM fundraising_donations WHERE fundraising_goal=? AND fiscalyear=?");
|
|
|
|
$stmt->execute([$f->type,$config['FISCALYEAR']]);
|
|
|
|
$stmt = $pdo->prepare("DELETE FROM fundraising_goals WHERE id=?");
|
|
|
|
$stmt->execute([$id]);
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($pdo->rowCount())
|
|
|
|
happy_('Successfully removed fund %1', array($f->name));
|
|
|
|
} else {
|
|
|
|
error_('Cannot remove system fund');
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
exit;
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($_POST['action'] == 'fundedit' || $_POST['action'] == 'fundadd') {
|
|
|
|
$fundraising_id = intval($_POST['fundraising_id']);
|
|
|
|
if ($fundraising_id) {
|
2025-02-09 17:24:37 +00:00
|
|
|
$q = $pdo->prepare("SELECT * FROM fundraising_goals WHERE id=?");
|
|
|
|
$q->execute([$fundraising_id]);
|
2025-01-29 03:30:48 +00:00
|
|
|
$f = $q->fetch(PDO::FETCH_OBJ);
|
|
|
|
$system = $f->system;
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
$name = $_POST['name'];
|
|
|
|
$goal = $_POST['goal'];
|
|
|
|
$description = $_POST['description'];
|
|
|
|
$budget = intval($_POST['budget']);
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($_POST['action'] == 'fundedit') {
|
|
|
|
if (($system == 'yes' && $budget) || ($system == 'no' && $budget && $goal && $name)) {
|
|
|
|
if ($system == 'yes') {
|
2025-02-09 17:24:37 +00:00
|
|
|
$stmt = $pdo->prepare("UPDATE fundraising SET budget=?, description=? WHERE id=?");
|
|
|
|
$stmt->execute([$budget,$description,$fundraising_id]);
|
2025-01-29 03:30:48 +00:00
|
|
|
} else {
|
2025-02-09 17:24:37 +00:00
|
|
|
$stmt = $pdo->prepare("UPDATE fundraising SET budget=?, description=?, goal=?, name=? WHERE id=?");
|
|
|
|
$stmt->execute([$budget,$description,$goal,$name,$fundraising_id]);
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
2024-12-08 02:42:00 -05:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($pdo->errorInfo())
|
|
|
|
error_('MySQL Error: %1', array($pdo->errorInfo()));
|
2009-09-09 00:26:12 +00:00
|
|
|
else
|
2025-01-29 03:30:48 +00:00
|
|
|
happy_('Saved fund changes');
|
|
|
|
} else {
|
|
|
|
error_('Required fields were missing, please try again');
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
exit;
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($_POST['action'] == 'fundadd') {
|
|
|
|
if ($goal && $type && $name) {
|
2025-02-09 17:24:37 +00:00
|
|
|
$stmt = $pdo->prepare("INSERT INTO fundraising_goals (goal,name,description,system,budget,fiscalyear) VALUES (?,?,?,'no',?,?)");
|
|
|
|
$stmt->execute([$goal,$name,$description,$budget,$config['FISCALYEAR']]);
|
2025-01-29 03:30:48 +00:00
|
|
|
happy_('Added new fund');
|
|
|
|
} else
|
|
|
|
error_('Required fields were missing, please try again');
|
|
|
|
if ($pdo->errorInfo())
|
|
|
|
error_('MySQL Error: %1', array($pdo->errorInfo()));
|
|
|
|
exit;
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|