2009-01-08 02:46:42 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
|
|
|
<? // See http://docs.kohanaphp.com/libraries/pagination ?>
|
|
|
|
|
<ul id="gPager">
|
2009-01-08 17:13:06 +00:00
|
|
|
<? /* XXX: This message isn't easily localizable */
|
|
|
|
|
$from_to_msg = t("{{from_number}} - {{to_number}} of {{total}}",
|
|
|
|
|
array("from_number" => $current_first_item,
|
|
|
|
|
"to_number" => $current_last_item,
|
|
|
|
|
"total" => $total_items)) ?>
|
|
|
|
|
<li><?= $from_to_msg?></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? if ($first_page): ?>
|
2009-01-08 17:13:06 +00:00
|
|
|
<li class="first"><a href="<?= str_replace('{page}', 1, $url) ?>"><?= t("first") ?></a></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? else: ?>
|
2009-01-08 17:13:06 +00:00
|
|
|
<li class="first_inactive"><?= t("first") ?></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
<? if ($previous_page): ?>
|
2009-01-08 17:13:06 +00:00
|
|
|
<li class="previous"><a href="<?= str_replace('{page}', $previous_page, $url) ?>"><?= t("previous") ?></a></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? else: ?>
|
2009-01-08 17:13:06 +00:00
|
|
|
<li class="previous_inactive"><?= t("previous") ?></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
<? if ($next_page): ?>
|
2009-01-08 17:13:06 +00:00
|
|
|
<li class="next"><a href="<?= str_replace('{page}', $next_page, $url) ?>"><?= t("next") ?></a></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? else: ?>
|
2009-01-08 17:13:06 +00:00
|
|
|
<li class="next_inactive"><?= t("next") ?></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
<? if ($last_page): ?>
|
2009-01-08 17:13:06 +00:00
|
|
|
<li class="last"><a href="<?= str_replace('{page}', $last_page, $url) ?>"><?= t("last") ?></a></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? else: ?>
|
2009-01-08 17:13:06 +00:00
|
|
|
<li class="last_inactive"><?= t("last") ?></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
</ul>
|