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-10 21:50:35 +00:00
|
|
|
<? /* XXX: This message isn't easily localizable */
|
2009-01-15 10:02:41 +00:00
|
|
|
$from_to_msg = t("Items %from_number - %to_number of %total",
|
2009-01-10 21:50:35 +00:00
|
|
|
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-10 21:50:35 +00:00
|
|
|
<li><span class="ui-icon ui-icon-seek-first"></span><a href="<?= str_replace('{page}', 1, $url) ?>"><?= t("first") ?></a></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? else: ?>
|
2009-01-10 21:50:35 +00:00
|
|
|
<li class="inactive"><span class="ui-icon ui-icon-seek-first"></span><?= t("first") ?></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
<? if ($previous_page): ?>
|
2009-01-10 21:50:35 +00:00
|
|
|
<li><span class="ui-icon ui-icon-seek-prev"></span><a href="<?= str_replace('{page}', $previous_page, $url) ?>"><?= t("previous") ?></a></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? else: ?>
|
2009-01-10 21:50:35 +00:00
|
|
|
<li class="inactive"><span class="ui-icon ui-icon-seek-prev"></span><?= t("previous") ?></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
<? if ($next_page): ?>
|
2009-01-10 21:50:35 +00:00
|
|
|
<li><a href="<?= str_replace('{page}', $next_page, $url) ?>"><?= t("next") ?></a><span class="ui-icon ui-icon-seek-next"></span></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? else: ?>
|
2009-01-10 21:50:35 +00:00
|
|
|
<li class="inactive"><?= t("next") ?><span class="ui-icon ui-icon-seek-next"></span></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
<? if ($last_page): ?>
|
2009-01-10 21:50:35 +00:00
|
|
|
<li><a href="<?= str_replace('{page}', $last_page, $url) ?>"><?= t("last") ?></a><span class="ui-icon ui-icon-seek-end"></span></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? else: ?>
|
2009-01-10 21:50:35 +00:00
|
|
|
<li class="inactive"><?= t("last") ?><span class="ui-icon ui-icon-seek-end"></span></li>
|
2009-01-08 02:46:42 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
</ul>
|