X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Fdonation.php;h=b1aba401ec5273a2c4765546feb966fa13d419bf;hb=f02dbb704b8c6f04529bf9cae3b99d379f998567;hp=16b01970caa951ca4ceb460828b50e2995291780;hpb=637bc9bc7d65b625a322385b5700bfc169f877c0;p=readifood.git diff --git a/lib/donation.php b/lib/donation.php index 16b0197..b1aba40 100644 --- a/lib/donation.php +++ b/lib/donation.php @@ -1,10 +1,12 @@ Donation recorded.

\n"; @@ -25,14 +27,16 @@ echo "

No such contact!

\n"; } } - else if ($_POST['area_id']) { + else if ($_POST['show_in_area']) { + set_last_selected("area_id", $_POST['area_id']); $q = new AreaQuery; $area = $q->findOneById($_POST['area_id']); /* XXX: Function to build URL because we need to set a class in links. */ header(sprintf("Location: http%s://%s/%s/in/area/%s/%d", ($_SERVER['HTTPS']) ? "s" : "", $_SERVER['HTTP_HOST'], $module, urlencode($area->getName()), $_POST['area_id'])); exit; } - else if ($_POST['city_id']) { + else if ($_POST['show_in_city']) { + set_last_selected("city_id", $_POST['city_id']); $q = new CityQuery; $city = $q->findOneById($_POST['city_id']); header(sprintf("Location: http%s://%s/%s/in/city/%s/%d", ($_SERVER['HTTPS']) ? "s" : "", $_SERVER['HTTP_HOST'], $module, urlencode($city->getName()), $_POST['city_id'])); @@ -127,15 +131,21 @@ return; } - echo "
\n"; + form("noprint standout"); + $candidates = array(); + foreach ($areas as $area) { + if (! count(get_area_hubs($area->getId()))) continue; + $candidates[] = $area; + } + if (! count($candidates)) return; + echo "

Show donations in area\n"; echo "\n"; - echo "\n"; - echo "

\n"; + submit("show_in_area", "Show"); } function show_donation_cities_form($city_id = null) { @@ -147,20 +157,27 @@ return; } - echo "
\n"; + $candidates = array(); + foreach ($cities as $city) { + if (! count(get_city_hubs($city->getId()))) continue; + $candidates[] = $city; + } + if (! count($candidates)) return; + echo "

Show donations in city\n"; echo "\n"; - echo "\n"; - echo "

\n"; + submit("show_in_city", "Show"); } function show_donation_forms($city_id) { + form("noprint standout"); show_donation_areas_form($city_id); show_donation_cities_form($city_id); + end_form(); } function show_donation_form($donation = null, $area_id = null) { @@ -210,7 +227,7 @@ return; } - echo "
\n"; + form(); echo "

Record a donation:

\n"; echo "\n"; @@ -220,7 +237,32 @@ echo " \n"; echo "\n"; echo "
"; submit("add_donation", "Record"); echo "
\n"; - echo "
\n"; + end_form(); + } + + function show_hub_donation_form($hub) { + if (! check_admin(1)) return; + + $area = get_hub_area($hub); + if (! $area) { + echo "

No such area!

\n"; + return; + } + + $donation = new Donation; + $donation->setHubId($hub->getId()); + + form(); + echo "

Record a donation:

\n"; + + echo "\n"; + show_donation_form($donation, $area->getId()); + + echo "\n"; + echo " \n"; + echo "\n"; + echo "
"; submit("add_donation", "Record"); echo "
\n"; + end_form(); } function show_add_new_donation_form() { @@ -233,7 +275,7 @@ return; } - echo "
\n"; + form("noprint standout"); echo "

Record a donation in "; submit("show_add_donation", "Proceed"); echo "

\n"; - echo "
\n"; + end_form(); } function update_donation(&$donation, $new = false) { - #$date = ymd_to_iso8601("date"); $date = $_POST['date']; $contact_id = $_POST['contact_id']; $hub_id = $_POST['hub_id']; @@ -296,6 +337,16 @@ return $donation->getId(); } + function confirm_delete_donation($id = null) { + if (! check_admin(1, "delete a donation")) return; + + if (isset($id)) $donation = get_donation_by_id($id); + if (! $donation) return false; + + echo "

Confirm deletion

\n"; + echo "

You must confirm deletion of donation $id: " . $donation->getDeleteLink(true) . "

\n"; + } + function delete_donation($id = null) { if (! check_admin(1, "delete a donation")) return; @@ -318,7 +369,7 @@ if (isset($id)) $donation = get_donation_by_id($id); if (! $donation) return; - echo "
\n"; + form(); echo "

Donation " . $donation->getId() . ""; if (check_admin(1)) { echo " " . $donation->getDeleteLink(); @@ -338,7 +389,7 @@ } echo "\n"; - echo "

\n"; + end_form(); } if (count($parameters)) { @@ -386,26 +437,32 @@ break; } } + else if ($parameters[0] == "record") { + if ($parameters[1] == "to") { + if ($parameters[2] == "hub") { + if ($parameters[4]) $hub = get_hub_by_id($parameters[4]); + if (! $hub) $hub = get_hub_by_name(urldecode($parameters[3])); + if ($hub) show_hub_donation_form($hub); + } + } + } } list($ignored, $id, $args) = parse_parameters($parameters); //echo "

$name($id) " . print_r($args, true) . "

\n"; if (count($args)) { switch ($args[0]) { case "delete": + confirm_delete_donation($id); + break; + + case "confirmdelete": delete_donation($id); break; } } else if (isset($id)) show_donation($id); - else { - /* XXX: Shown after adding. */ - show_donation_forms($city_id); - show_add_new_donation_form($city_id); - } - - if (count($parameters)) { - show_donation_forms($city_id); - } + show_donation_forms($city_id); + show_add_new_donation_form($city_id); ?>