0byt3m1n1
Path:
/
data
/
applications
/
aps
/
gallery
/
3.0.2-6
/
standard
/
htdocs
/
themes
/
greydragon_w
/
views
/
[
Home
]
File: paginator.html.php
<?php defined("SYSPATH") or die("No direct script access.") ?> <? // This is a generic paginator for album, photo and movie pages. Depending on the page type, // there are different sets of variables available. With this data, you can make a paginator // that lets you say "You're viewing photo 5 of 35", or "You're viewing photos 10 - 18 of 37" // for album views. // // Available variables for all page types: // $page_type - "collection", "item", or "other" // $page_subtype - "album", "movie", "photo", "tag", etc. // $previous_page_url - the url to the previous page, if there is one // $next_page_url - the url to the next page, if there is one // $total - the total number of photos in this album // // Available for the "collection" page types: // $page - what page number we're on // $max_pages - the maximum page number // $page_size - the page size // $first_page_url - the url to the first page, or null if we're on the first page // $last_page_url - the url to the last page, or null if we're on the last page // $first_visible_position - the position number of the first visible photo on this page // $last_visible_position - the position number of the last visible photo on this page // // Available for "item" page types: // $position - the position number of this photo // ?> <? switch ($page_type) { case "collection": if ($item): $parent = $item->parent(); endif; $current_page = $page; $total_pages = $max_pages; // Prepare page url list for ($i = 1; $i <= $total_pages; $i++): $_pagelist[$i] = url::site(url::merge(array("page" => $i))); endfor; break; case "item": if ($item): $parent = $item->parent(); endif; $current_page = $position; $total_pages = $total; $siblings = $item->parent()->children(); for ($i = 1; $i <= $total; $i++): $_pagelist[$i] = $siblings[$i-1]->url(); endfor; break; default: $current_page = 1; $total_pages = 1; $_pagelist[1] = url::site(); break; } if ($total_pages <= 1): $pagination_msg = " "; else: $pagination_msg = t("Page:") . ' '; if ($total_pages < 13): for ($i = 1; $i <= $total_pages; $i++): if ($i == $current_page): $pagination_msg .= '<span>' . t($i) . '</span>'; else: $pagination_msg .= '<span><a href="' . $_pagelist[$i] . '" title="' . t("Page") . ' ' . t($i) . '">' . t($i) . '</a></span>'; endif; if ($i < $total_pages): $pagination_msg .= '·'; endif; endfor; elseif ($current_page < 9): for ($i = 1; $i <= 10; $i++): if ($i == $current_page): $pagination_msg .= '<span>' . t($i) . '</span>'; else: $pagination_msg .= '<span><a href="' . $_pagelist[$i] . '" title="' . t("Page") . ' ' . t($i) . '">' . t($i) . '</a></span>'; endif; if ($i < 10): $pagination_msg .= '·'; endif; endfor; $pagination_msg .= '…'; $pagination_msg .= '<span><a href="' . $_pagelist[$total_pages - 1] . '" title="' . t("Page") . ' ' . t($total_pages - 1) . '">' . t($total_pages - 1) . '</a></span>'; $pagination_msg .= '·'; $pagination_msg .= '<span><a href="' . $_pagelist[$total_pages] . '" title="' . t("Page") . ' ' . t($total_pages) . '">' . t($total_pages) . '</a></span>'; elseif ($current_page > $total_pages - 8): $pagination_msg .= '<span><a href="' . $_pagelist[1] . '" title="' . t("Page") . ' ' . t(1) . '">' . t(1) . '</a></span>'; $pagination_msg .= '·'; $pagination_msg .= '<span><a href="' . $_pagelist[2] . '" title="' . t("Page") . ' ' . t(2) . '">' . t(2) . '</a></span>'; $pagination_msg .= '…'; for ($i = $total_pages - 9; $i <= $total_pages; $i++): if ($i == $current_page): $pagination_msg .= '<span>' . t($i) . '</span>'; else: $pagination_msg .= '<span><a href="' . $_pagelist[$i] . '" title="' . t("Page") . ' ' . t($i) . '">' . t($i) . '</a></span>'; endif; if ($i < $total_pages): $pagination_msg .= '·'; endif; endfor; else: $pagination_msg .= '<span><a href="' . $_pagelist[1] . '" title="' . t("Page") . ' ' . t(1) . '">' . t(1) . '</a></span>'; $pagination_msg .= '·'; $pagination_msg .= '<span><a href="' . $_pagelist[2] . '" title="' . t("Page") . ' ' . t(2) . '">' . t(2) . '</a></span>'; $pagination_msg .= '…'; for ($i = $current_page - 5; $i <= $current_page + 5; $i++): if ($i == $current_page): $pagination_msg .= '<span>' . t($i) . '</span>'; else: $pagination_msg .= '<span><a href="' . $_pagelist[$i] . '" title="' . t("Page") . ' ' . t($i) . '">' . t($i) . '</a></span>'; endif; if ($i < $current_page + 5): $pagination_msg .= '·'; endif; endfor; $pagination_msg .= '…'; $pagination_msg .= '<span><a href="' . $_pagelist[$total_pages - 1] . '" title="' . t("Page") . ' ' . t($total_pages - 1) . '">' . t($total_pages - 1) . '</a></span>'; $pagination_msg .= '·'; $pagination_msg .= '<span><a href="' . $_pagelist[$total_pages] . '" title="' . t("Page") . ' ' . t($total_pages) . '">' . t($total_pages) . '</a></span>'; endif; endif; ?> <ul class="g-paginator"> <li class="g-pagination"><?= $pagination_msg ?></li> <li class="g-navigation"> <? if ($current_page > 1): ?> <a title="<?= t("first") ?>" id="g-navi-first" href="<?= $_pagelist[1] ?>"><span class="ui-icon ui-icon-first"> </span></a> <? else: ?> <span class="ui-icon ui-icon-first-d"> </span> <? endif ?> <? if (isset($previous_page_url)): ?> <a title="<?= t("previous") ?>" id="g-navi-prev" href="<?= $previous_page_url ?>"><span class="ui-icon ui-icon-prev"> </span></a> <? else: ?> <span class="ui-icon ui-icon-prev-d"> </span> <? endif ?> <? if ($parent): ?> <a title="<?= t("up") ?>" id="g-navi-parent" href="<?= $parent->url() ?>"><span class="ui-icon ui-icon-parent"> </span></a> <? else: ?> <span class="ui-icon ui-icon-parent-d"> </span> <? endif ?> <? if (isset($next_page_url)): ?> <a title="<?= t("next") ?>" class="ui-right" id="g-navi-next" href="<?= $next_page_url ?>"><span class="ui-icon ui-icon-next"> </span></a> <? else: ?> <span class="ui-icon ui-icon-next-d"> </span> <? endif ?> <? if ($current_page < $total_pages): ?> <a title="<?= t("last") ?>" class="ui-right" id="g-navi-last" href="<?= $_pagelist[$total_pages] ?>"><span class="ui-icon ui-icon-last"> </span></a> <? else: ?> <span class="ui-icon ui-icon-last-d"> </span> <? endif ?> </li> </ul>