summaryrefslogtreecommitdiff
path: root/app/views/helpers/pagination.phtml
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-04-29 00:57:08 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-04-29 00:57:08 +0200
commit9820345eec3958e9df1b1f8daaaa776de0d333e5 (patch)
treee85c0890ca77be78c858e0c3f0e4721f779cb28f /app/views/helpers/pagination.phtml
parent00bac232e0976a2ca09e7c4e73956cd802176480 (diff)
Revue de code pour la récupération des articles : ATTENTION GROS CHANGEMENTS, aucune garantie de stabilité et possibles régressions. La recherche dans le contenu des articles fonctionnent et possibilité de rechercher des tags
Diffstat (limited to 'app/views/helpers/pagination.phtml')
-rwxr-xr-xapp/views/helpers/pagination.phtml29
1 files changed, 4 insertions, 25 deletions
diff --git a/app/views/helpers/pagination.phtml b/app/views/helpers/pagination.phtml
index d5428d304..f029f281a 100755
--- a/app/views/helpers/pagination.phtml
+++ b/app/views/helpers/pagination.phtml
@@ -2,36 +2,15 @@
$c = Request::controllerName ();
$a = Request::actionName ();
$params = Request::params ();
-
- $conf = new RSSConfiguration ();
- $order = Session::param ('order', $conf->sortOrder ());
- if ($order == 'low_to_high') {
- $first_link = Translate::t ('newer');
- $second_link = Translate::t ('older');
- } else {
- $first_link = Translate::t ('older');
- $second_link = Translate::t ('newer');
- }
?>
<ul class="pagination">
- <li class="item pager-previous">
- <?php if ($this->currentPage > 1) { ?>
- <?php $params[$getteur] = $this->currentPage - 1; ?>
- <a href="<?php echo Url::display (array ('c' => $c, 'a' => $a, 'params' => $params)); ?>">‹ <?php echo $first_link ?></a>
- <?php } else { ?>
- &nbsp;
- <?php } ?>
- </li>
-
- <li class="item pager-current">page <?php echo $this->currentPage; ?> / <?php echo $this->nbPage; ?></li>
-
<li class="item pager-next">
- <?php if ($this->currentPage < $this->nbPage) { ?>
- <?php $params[$getteur] = $this->currentPage + 1; ?>
- <a href="<?php echo Url::display (array ('c' => $c, 'a' => $a, 'params' => $params)); ?>"><?php echo $second_link; ?> ›</a>
+ <?php if ($this->next != '') { ?>
+ <?php $params[$getteur] = $this->next; ?>
+ <a href="<?php echo Url::display (array ('c' => $c, 'a' => $a, 'params' => $params)); ?>"><?php echo Translate::t ('load_more'); ?></a>
<?php } else { ?>
- &nbsp;
+ <?php echo Translate::t ('nothing_to_load'); ?>
<?php } ?>
</li>
</ul>