X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Ffunctions.php;h=9690d5d3dad54a4ac146e0a387ace470b18a4444;hb=018b041d077a8740dde27529a1ffc32f4610b7ef;hp=2b35663b66097a8c6613d996943c333abed052e0;hpb=7840fb6e5f99fcc6c9b25e05c6f40d73137f6d79;p=readifood.git diff --git a/lib/functions.php b/lib/functions.php index 2b35663..9690d5d 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -21,6 +21,46 @@ return array($name, $id, $args); } + function pagination() { + $offset = 1; + $per_page = $GLOBALS['default_page_size']; + + parse_str($_SERVER['QUERY_STRING'], $params); + if (array_key_exists('page', $params)) if (is_numeric($params['page'])) $offset = $params['page']; + if (array_key_exists('size', $params)) if (is_numeric($params['size'])) $per_page = $params['size']; + + return array($offset, $per_page); + } + + function page_link($alt, $n, $cur, $max, $size) { + $links = array(); + if ($n < 1 || $n == $cur || $n > $max) return $alt; + $params = array('page' => $n); + if ($size != $GLOBALS['default_page_size']) $params['size'] = $size; + $url = http_build_query($params); + return "$alt "; + } + + function show_pagination($pager, $n = 5) { + if (! $pager->haveToPaginate()) return; + + list($offset, $per_page) = pagination(); + + $pages = ceil($pager->getNbResults() / $per_page); + $pages++; + + $links = array(); + $links[] = page_link('First', 1, $offset, $pages, $per_page); + $links[] = page_link('Previous', $offset - 1, $offset, $pages, $per_page); + foreach ($pager->getLinks($n) as $link) $links[] = page_link($link, $link, $offset, $pages, $per_page); + $links[] = page_link('Next', $offset + 1, $offset, $pages, $per_page); + $links[] = page_link('Last', $pages, $offset, $pages, $per_page); + + echo "

Page: "; + echo implode(' / ', $links); + echo "

\n"; + } + function get_city_by_name($name, $postcode_area = null, $verbose = true) { $q = new CityQuery; @@ -277,7 +317,10 @@ } function get_order_summary($order) { - $ret = "Order " . $order->getStrongLink($order->getId()) . ": " . get_order_displayname($order); + $ret = "Order "; + $order_state = get_order_state($order); + if ($order_state) $ret = "" . ucfirst(get_order_state_string($order_state)) . " order "; + $ret .= $order->getStrongLink($order->getId()) . ": " . get_order_displayname($order); if (check_admin(1)) $ret .= " " . $order->getDeleteLink(); @@ -314,6 +357,38 @@ return $q->findOneById($address->getAreaId()); } + function get_address_map_link($address) { + $postcode = trim($address->getPostcode()); + if ($postcode) { + # mrt=loc specifies a location search. + $map = "maps.google.co.uk/maps?q=" . urlencode($postcode) . "&mrt=loc"; + $url = "http://$map"; + # output=embed allows display in an iframe. + # iwloc=near hides the popup window for the embedded view. + $embed = $GLOBALS['http'] . "://$map&output=embed&iwloc=near"; + $html = " "; + $html .= get_small_link_with_id("map", "Map", $url); + $html .= ""; + return $html; + } + } + function get_contact_address($contact) { $q = new AddressQuery; return $q->findOneById($contact->getAddressId()); @@ -418,9 +493,9 @@ function show_role_form($role, $roles) { for ($i = 0; $i < count($roles); $i++) { - echo " $roles[$i]\n"; + echo ">\n"; } } @@ -476,47 +551,78 @@ } function show_date_form($name, $date = null) { - $past = 60; - $future = 60; - echo "\n"; - return; - if (! isset($date)) $date = date('Y-m-d'); - list($y, $m, $d) = iso8601_to_ymd($date); + } - echo "Year: "; - echo "Month: "; - echo "Day: "; + function get_small_link_with_id() { + /* Args are , , , [ ...] */ + $args = func_get_args(); + $id = array_shift($args); + if (isset($id)) $id = " id=\"$id\""; + $html = htmlspecialchars(array_shift($args)); + $url = array_shift($args); + return vsprintf("$html\n", $args); } function get_small_link() { /* Args are , , [ ...] */ $args = func_get_args(); - $html = htmlspecialchars(array_shift($args)); - $url = array_shift($args); - return vsprintf("$html\n", $args); + array_unshift($args, null); + return call_user_func_array("get_small_link_with_id", $args); } function small_link() { echo call_user_func_array("get_small_link", func_get_args()); } - include_once("$lib_root/admin.php"); - include_once("$lib_root/forms.php"); + include_once(join(DIRECTORY_SEPARATOR, array($lib_root, "admin.php"))); + include_once(join(DIRECTORY_SEPARATOR, array($lib_root, "forms.php"))); ?>