aboutsummaryrefslogtreecommitdiff
path: root/h-source/Library/Helper/Pages.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2014-09-16 08:03:29 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2014-09-16 08:03:29 +0000
commit11972639df8315753123ebccdadee1f596807ad0 (patch)
tree7c932d7e2f0d66afa55e603960f86cef7b00c5ff /h-source/Library/Helper/Pages.php
parent6209923d6cfb2418ee926cccdc62a9383e14bd97 (diff)
Integrated new EasyGiant Library
Diffstat (limited to 'h-source/Library/Helper/Pages.php')
-rwxr-xr-xh-source/Library/Helper/Pages.php15
1 files changed, 11 insertions, 4 deletions
diff --git a/h-source/Library/Helper/Pages.php b/h-source/Library/Helper/Pages.php
index d8ac856..3826469 100755
--- a/h-source/Library/Helper/Pages.php
+++ b/h-source/Library/Helper/Pages.php
@@ -2,7 +2,7 @@
// EasyGiant is a PHP framework for creating and managing dynamic content
//
-// Copyright (C) 2009 - 2011 Antonio Gallo
+// Copyright (C) 2009 - 2014 Antonio Gallo (info@laboratoriolibero.com)
// See COPYRIGHT.txt and LICENSE.txt.
//
// This file is part of EasyGiant
@@ -109,9 +109,16 @@ class Helper_Pages extends Helper_Html
public function html($pageNumber,$string = null) {
if (isset($string)) {
$strNumber = $string;
- $strClass = "class='itemListPage'";
+ if (strcmp($pageNumber,"1") === 0)
+ {
+ $strClass = "class='itemListPage previous_page'";
+ }
+ else
+ {
+ $strClass = "class='itemListPage next_page'";
+ }
} else {
- if ($pageNumber === $this->_currentPage)
+ if (strcmp($pageNumber,$this->_currentPage) === 0)
{
$strNumber = $pageNumber;
$strClass = "class='currentPage'";
@@ -123,7 +130,7 @@ class Helper_Pages extends Helper_Html
}
}
$this->viewArgs[$this->_variableArg] = $pageNumber;
- $viewStatus = Url::createUrl(array_values($this->viewArgs));
+ $viewStatus = Url::createUrl($this->viewArgs);
$href= Url::getRoot(null) . $this->_urlViewAction .$viewStatus;
return $this->getATag($href,$strNumber,$strClass);
}