X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Ffunctions.php;h=34b23c790779244f0c1af6e1ad4da18dfe43317d;hb=44602fdbde624186066be0f824e97c822679bc01;hp=ec0b35ade4763feb1890792972f1f01166b1e107;hpb=67672f1de588927289253f9b56270e5336aa537d;p=readifood.git diff --git a/lib/functions.php b/lib/functions.php index ec0b35a..34b23c7 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -21,6 +21,52 @@ return array($name, $id, $args); } + function pagination() { + $first_page = 1; + $per_page = $GLOBALS['default_page_size']; + + parse_str($_SERVER['QUERY_STRING'], $params); + if (array_key_exists('page', $params)) if (is_numeric($params['page'])) $first_page = $params['page']; + if (array_key_exists('size', $params)) if (is_numeric($params['size'])) $per_page = $params['size']; + + return array($first_page, $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($first_page, $per_page) = pagination(); + + $pages = ceil($pager->getNbResults() / $per_page); + + /* Highlight the fact we skipped some pages. */ + $linked_pages = $pager->getLinks($n); + $first_link = $linked_pages[0]; + $last_link = end($linked_pages); + + $links = array(); + $links[] = page_link('First', 1, $first_page, $pages, $per_page); + $links[] = page_link('Previous', $first_page - 1, $first_page, $pages, $per_page); + if ($first_link > 1) $links[] = page_link('...', $first_page, $pages, $per_page); + foreach ($linked_pages as $link) $links[] = page_link($link, $link, $first_page, $pages, $per_page); + if ($last_link < $pages) $links[] = page_link('...', $first_page, $pages, $per_page); + $links[] = page_link('Next', $first_page + 1, $first_page, $pages, $per_page); + $links[] = page_link('Last', $pages, $first_page, $pages, $per_page); + + echo "

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

\n"; + } + function get_city_by_name($name, $postcode_area = null, $verbose = true) { $q = new CityQuery; @@ -582,7 +628,7 @@ 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"))); ?>