X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Fhub.php;h=176903dbbce7cb09cd1ca60053cfc9b4371871ae;hb=refs%2Ftags%2Fuat-2016-04-04;hp=3d8e8d58661e91df352b1230710b6b66f77d154d;hpb=adaa23b9f9bbfb55f5c1cd85d6e84c49b950887d;p=readifood.git diff --git a/lib/hub.php b/lib/hub.php index 3d8e8d5..176903d 100644 --- a/lib/hub.php +++ b/lib/hub.php @@ -1,10 +1,12 @@ Added hub.

\n"; @@ -28,12 +30,14 @@ } } else if ($_POST['show_in_area']) { + set_last_selected("area_id", $_POST['area_id']); $q = new AreaQuery; $area = $q->findOneById($_POST['area_id']); 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['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'])); @@ -46,8 +50,13 @@ $role = $hub->getRole(); $role_string = get_hub_role_string($hub); if ($role_string) echo " $role_string"; - if ($role & $GLOBALS['ROLE_COLLECTION']) printf(" Donations", urlencode($hub->getName()), $hub->getId()); - if ($role & $GLOBALS['ROLE_DISTRIBUTION']) printf(" Orders", urlencode($hub->getName()), $hub->getId()); + $d = urlencode($hub->getName()); + $i = $hub->getId(); + if ($role & $GLOBALS['ROLE_COLLECTION']) { + printf(" Donations", $d, $i); + echo " " . get_small_link("Record", "/donation/record/to/hub/%s/%d", $d, $i); + } + if ($role & $GLOBALS['ROLE_DISTRIBUTION']) printf(" Orders", $d, $i); if (check_admin(1)) { echo " " . $hub->getDeleteLink(); }