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

\n"; @@ -26,6 +28,7 @@ } } 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. */ @@ -33,6 +36,7 @@ exit; } 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'])); @@ -236,6 +240,31 @@ 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() { if (! check_admin(1)) return; @@ -408,6 +437,15 @@ 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";