1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
<?php
/*
* This file is part of Zoph.
*
* Zoph is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Zoph is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Zoph; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
?>
<?php
if ($offset > 0) {
$new_offset = max(0, $offset - $cells);
?>
<div id="prev">
[ <a href="<?php echo $PHP_SELF ?>?<?php echo update_query_string($request_vars, "_off", $new_offset) ?>"><?php echo translate("Prev") ?></a> ]
</div>
<?php
}
else {
echo " <div id=\"prev\"> </div>\n";
}
if ($num_pages > 1) {
?>
<div id="pagelink">[
<?php
$mid_page = floor($MAX_PAGER_SIZE / 2);
$page = $page_num - $mid_page;
if ($page <= 0) { $page = 1; }
$last_page = $page + $MAX_PAGER_SIZE - 1;
if ($last_page > $num_pages) {
$page = $page - $last_page + $num_pages;
if ($page <= 0) { $page = 1; }
$last_page = $num_pages;
}
if ($page > 1) {
?>
<a href="<?php echo $PHP_SELF ?>?<?php echo update_query_string($request_vars, "_off", 0) ?>">1</a> ...
<?php
}
while ($page <= $last_page) {
$new_offset = ($page - 1) * $cells;
?>
<a href="<?php echo $PHP_SELF ?>?<?php echo update_query_string($request_vars, "_off", $new_offset) ?>"><span <?php echo $page == $page_num ? " id='currentpage'" : "" ?>><?php echo $page ?></span></a>
<?php
$page++;
}
if ($page <= $num_pages) {
?>
... <a href="<?php echo $PHP_SELF ?>?<?php echo update_query_string($request_vars, "_off", ($num_pages-1) * $cells) ?>"><?php echo $num_pages ?></a>
<?php
}
?>
]</div>
<?php
}
else {
echo " <div id=\"pagelink\"> </div>\n";
}
if ($num_photos > $offset + $num) {
$new_offset = $offset + $cells;
?>
<div id="next">
[ <a href="<?php echo $PHP_SELF ?>?<?php echo update_query_string($request_vars, "_off", $new_offset) ?>"><?php echo translate("Next") ?></a> ]
</div>
<?php
}
else {
echo " <div id=\"next\"> </div>\n";
}
?>
|