summaryrefslogtreecommitdiff
path: root/app/models/Entry.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-14 20:10:15 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-14 20:10:15 +0100
commit47196182e53ed25a73ba6e5129675df99df5b671 (patch)
tree885ad6a5e80a5c76fc7b6fc6b23fbf27aedcdc47 /app/models/Entry.php
parentd2c20395c0aa74f2e1c039b56dfda618415be617 (diff)
Fix bug #25 mais le code ne me convient pas. Le bug #28 devra corriger ce soucis
Diffstat (limited to 'app/models/Entry.php')
-rwxr-xr-xapp/models/Entry.php23
1 files changed, 18 insertions, 5 deletions
diff --git a/app/models/Entry.php b/app/models/Entry.php
index 0e1d69921..8a1ee1449 100755
--- a/app/models/Entry.php
+++ b/app/models/Entry.php
@@ -247,7 +247,7 @@ class EntryDAO extends Model_pdo {
$res = $stm->fetchAll (PDO::FETCH_ASSOC);
$this->nbItems = $res[0]['count'];
- $deb = ($this->currentPage - 1) * $this->nbItemsPerPage;
+ $deb = ($this->currentPage () - 1) * $this->nbItemsPerPage;
$fin = $this->nbItemsPerPage;
$sql = 'SELECT * FROM entry' . $where
@@ -281,7 +281,7 @@ class EntryDAO extends Model_pdo {
$sql = 'SELECT * FROM entry' . $where
. ' ORDER BY date' . $order;
} else {
- $deb = ($this->currentPage - 1) * $this->nbItemsPerPage;
+ $deb = ($this->currentPage () - 1) * $this->nbItemsPerPage;
$fin = $this->nbItemsPerPage;
$sql = 'SELECT * FROM entry' . $where
@@ -314,7 +314,7 @@ class EntryDAO extends Model_pdo {
$res = $stm->fetchAll (PDO::FETCH_ASSOC);
$this->nbItems = $res[0]['count'];
- $deb = ($this->currentPage - 1) * $this->nbItemsPerPage;
+ $deb = ($this->currentPage () - 1) * $this->nbItemsPerPage;
$fin = $this->nbItemsPerPage;
$sql = 'SELECT e.* FROM entry e INNER JOIN feed f ON e.id_feed = f.id' . $where
. ' ORDER BY date' . $order
@@ -348,7 +348,7 @@ class EntryDAO extends Model_pdo {
$res = $stm->fetchAll (PDO::FETCH_ASSOC);
$this->nbItems = $res[0]['count'];
- $deb = ($this->currentPage - 1) * $this->nbItemsPerPage;
+ $deb = ($this->currentPage () - 1) * $this->nbItemsPerPage;
$fin = $this->nbItemsPerPage;
$sql = 'SELECT * FROM entry e' . $where
. ' ORDER BY date' . $order
@@ -400,12 +400,25 @@ class EntryDAO extends Model_pdo {
public function _currentPage ($value) {
$this->currentPage = $value;
}
+ public function currentPage () {
+ if ($this->currentPage < 1) {
+ return 1;
+ }
+
+ $maxPage = ceil ($this->nbItems / $this->nbItemsPerPage);
+ if ($this->currentPage > $maxPage) {
+ return $maxPage;
+ }
+
+ return $this->currentPage;
+
+ }
public function getPaginator ($entries) {
$paginator = new Paginator ($entries);
$paginator->_nbItems ($this->nbItems);
$paginator->_nbItemsPerPage ($this->nbItemsPerPage);
- $paginator->_currentPage ($this->currentPage);
+ $paginator->_currentPage ($this->currentPage ());
return $paginator;
}