X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Ffunctions.php;h=20fdd7b81c337c66df607fa29d54a55e84ff4f9a;hb=a2e796d4502f96c1ec0e85dd22c7eccf7d1d9ac3;hp=b019e93f62caf3b058034aa5907387a01ceac65e;hpb=6fdbfe32798452ec1c0fdbda57edabb892518409;p=readifood.git diff --git a/lib/functions.php b/lib/functions.php index b019e93..20fdd7b 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -196,11 +196,30 @@ } function get_donation_displayname($donation) { - return $donation->getQuantity() . "kg on " . $donation->getDate(); + return sprintf("%0.2fkg on %s", $donation->getQuantity() / 1000, $donation->getDate()); + } + + function get_order_parcel_string($order) { + global $parcel_sizes, $parcel_contents; + + $parcel_size = ""; + for ($i = 0 ; $i < count($parcel_sizes); $i++) { + if ($order->getParcel() & (1 << $i)) { + $parcel_size = $parcel_sizes[$i]; + break; + } + } + + $selected = array(); + for ($i = count($parcel_sizes); $i < count($parcel_contents); $i++) { + if ($order->getParcel() & (1 << $i)) $selected[] = $parcel_contents[$i]; + } + + return implode(": ", array($parcel_size, implode(", ", $selected))); } function get_order_displayname($order) { - return $order->getQuantity() . "kg on " . $order->getDate(); + return sprintf("%s on %s", get_order_parcel_string($order), $order->getDate()); } function get_address_area($address) { @@ -227,6 +246,11 @@ return get_area_city($area); } + /* Parcel strings are the same so this can work. */ + function get_contact_parcel_string($contact) { + return get_order_parcel_string($contact); + } + /* Hub and Contact are similar enough that this can work. */ function get_hub_address($hub) { return get_contact_address($hub); @@ -285,10 +309,8 @@ return get_city_contacts($city_id, $GLOBALS['ROLE_DRIVER']); } - function get_contact_role_string($contact) { - global $roles; - - $role = $contact->getRole(); + function get_role_string($object, $roles) { + $role = $object->getRole(); $selected = array(); @@ -299,6 +321,22 @@ return implode(", ", $selected); } + function get_contact_role_string($contact) { + return get_role_string($contact, $GLOBALS['contact_roles']); + } + + function get_hub_role_string($hub) { + return get_role_string($hub, $GLOBALS['hub_roles']); + } + + function show_role_form($role, $roles) { + for ($i = 0; $i < count($roles); $i++) { + echo " $roles[$i]\n"; + } + } + function get_area_hubs($area_id = null) { $q = new HubQuery; if (isset($area_id)) $q->useAddressQuery()->filterByAreaId($area_id)->endUse();