X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Fdonation.php;h=4fc7a8d293d7b79c68e710be6454944453c985a5;hb=d4756a23630bd3de036e2e4d09b168b56d14b0ae;hp=e9c75dabe59b244bc41b93f04eba379658853468;hpb=6bd4ad3daf2cc870d96a3fed9ea9caf6798d2b78;p=readifood.git diff --git a/lib/donation.php b/lib/donation.php index e9c75da..4fc7a8d 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,13 +131,21 @@ return; } + 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"; + submit("show_in_area", "Show"); } function show_donation_cities_form($city_id = null) { @@ -145,13 +157,20 @@ return; } + $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"; + submit("show_in_city", "Show"); } function show_donation_forms($city_id) { @@ -243,7 +262,6 @@ } function update_donation(&$donation, $new = false) { - #$date = ymd_to_iso8601("date"); $date = $_POST['date']; $contact_id = $_POST['contact_id']; $hub_id = $_POST['hub_id']; @@ -294,6 +312,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; @@ -390,6 +418,10 @@ if (count($args)) { switch ($args[0]) { case "delete": + confirm_delete_donation($id); + break; + + case "confirmdelete": delete_donation($id); break; }