3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2013
38 * This class extends the PEAR pager object by substituting standard default pager arguments
39 * We also extract the pageId from either the GET variables or the POST variable (since we
40 * use a POST to jump to a specific page). At some point we should evaluate if we want
41 * to use Pager_Jumping instead. We've changed the format to allow navigation by jumping
42 * to a page and also First, Prev CURRENT Next Last
46 require_once 'Pager/Sliding.php';
47 class CRM_Utils_Pager
extends Pager_Sliding
{
50 * constants for static parameters of the pager
52 CONST ROWCOUNT
= 50, PAGE_ID
= 'crmPID', PAGE_ID_TOP
= 'crmPID', PAGE_ID_BOTTOM
= 'crmPID_B', PAGE_ROWCOUNT
= 'crmRowCount';
55 * the output of the pager. This is a name/value array with various keys
56 * that an application could use to display the pager
62 * The pager constructor. Takes a few values, and then assigns a lot of defaults
63 * to the PEAR pager class
64 * We have embedded some html in this class. Need to figure out how to export this
65 * to the top level at some point in time
67 * @param int total the total count of items to be displayed
68 * @param int currentPage the page currently being displayed
69 * @param string status the status message to be displayed. It embeds a token
70 * %%statusMessage%% that will be replaced with which items
71 * are currently being displayed
72 * @param string csvString the title of the link to be displayed for the export
73 * @param int perPage the number of items displayed per page
75 * @return object the newly created and initialized pager object
80 function __construct($params) {
81 if ($params['status'] === NULL) {
82 $params['status'] = ts('Contacts %%StatusMessage%%');
85 $this->initialize($params);
87 $this->Pager_Sliding($params);
89 list($offset, $limit) = $this->getOffsetAndRowCount();
91 $end = $offset +
$limit;
92 if ($end > $params['total']) {
93 $end = $params['total'];
96 if ($params['total'] == 0) {
100 $statusMessage = ts('%1 - %2 of %3', array(1 => $start, 2 => $end, 3 => $params['total']));
102 $params['status'] = str_replace('%%StatusMessage%%', $statusMessage, $params['status']);
104 $this->_response
= array(
105 'first' => $this->getFirstPageLink(),
106 'back' => $this->getBackPageLink(),
107 'next' => $this->getNextPageLink(),
108 'last' => $this->getLastPageLink(),
109 'currentPage' => $this->getCurrentPageID(),
110 'numPages' => $this->numPages(),
111 'csvString' => CRM_Utils_Array
::value('csvString', $params),
112 'status' => CRM_Utils_Array
::value('status', $params),
113 'buttonTop' => CRM_Utils_Array
::value('buttonTop', $params),
114 'buttonBottom' => CRM_Utils_Array
::value('buttonBottom', $params),
115 'twentyfive' => $this->getPerPageLink(25),
116 'fifty' => $this->getPerPageLink(50),
117 'onehundred' => $this->getPerPageLink(100),
121 * A page cannot have two variables with the same form name. Hence in the
122 * pager display, we have a form submission at the top with the normal
123 * page variable, but a different form element for one at the bottom
126 $this->_response
['titleTop'] = ts('Page %1 of %2', array(1 => '<input size="2" maxlength="3" name="' . self
::PAGE_ID
. '" type="text" value="' . $this->_response
['currentPage'] . '" />', 2 => $this->_response
['numPages']));
127 $this->_response
['titleBottom'] = ts('Page %1 of %2', array(1 => '<input size="2" maxlength="3" name="' . self
::PAGE_ID_BOTTOM
. '" type="text" value="' . $this->_response
['currentPage'] . '" />', 2 => $this->_response
['numPages']));
131 * helper function to assign remaining pager options as good default
134 * @param array $params the set of options needed to initialize the parent
142 function initialize(&$params) {
143 /* set the mode for the pager to Sliding */
145 $params['mode'] = 'Sliding';
147 /* also set the urlVar to be a crm specific get variable */
149 $params['urlVar'] = self
::PAGE_ID
;
151 /* set this to a small value, since we dont use this functionality */
153 $params['delta'] = 1;
155 $params['totalItems'] = $params['total'];
156 $params['append'] = TRUE;
157 $params['separator'] = '';
158 $params['spacesBeforeSeparator'] = 1;
159 $params['spacesAfterSeparator'] = 1;
160 $params['extraVars'] = array('force' => 1);
161 $params['excludeVars'] = array('reset', 'snippet', 'section');
163 // set previous and next text labels
164 $params['prevImg'] = ' ' . ts('< Previous');
165 $params['nextImg'] = ts('Next >') . ' ';
168 // set first and last text fragments
169 $params['firstPagePre'] = '';
170 $params['firstPageText'] = ' ' . ts('<< First');
171 $params['firstPagePost'] = '';
173 $params['lastPagePre'] = '';
174 $params['lastPageText'] = ts('Last >>') . ' ';
175 $params['lastPagePost'] = '';
177 if (isset($params['pageID'])) {
178 $params['currentPage'] = $this->getPageID($params['pageID'], $params);
181 $params['perPage'] = $this->getPageRowCount($params['rowCount']);
187 * Figure out the current page number based on value of
188 * GET / POST variables. Hierarchy rules are followed,
189 * POST over-rides a GET, a POST at the top overrides
190 * a POST at the bottom (of the page)
192 * @param int defaultPageId current pageId
194 * @return int new pageId to display to the user
198 function getPageID($defaultPageId = 1, &$params) {
199 // POST has higher priority than GET vars
200 // else if a value is set that has higher priority and finally the GET var
201 $currentPage = $defaultPageId;
202 if (!empty($_POST)) {
203 if (isset($_POST[CRM_Utils_Array
::value('buttonTop', $params)]) && isset($_POST[self
::PAGE_ID
])) {
204 $currentPage = max((int )@$_POST[self
::PAGE_ID
], 1);
206 elseif (isset($_POST[$params['buttonBottom']]) && isset($_POST[self
::PAGE_ID_BOTTOM
])) {
207 $currentPage = max((int )@$_POST[self
::PAGE_ID_BOTTOM
], 1);
209 elseif (isset($_POST[self
::PAGE_ID
])) {
210 $currentPage = max((int )@$_POST[self
::PAGE_ID
], 1);
212 elseif (isset($_POST[self
::PAGE_ID_BOTTOM
])) {
213 $currentPage = max((int )@$_POST[self
::PAGE_ID_BOTTOM
]);
216 elseif (isset($_GET[self
::PAGE_ID
])) {
217 $currentPage = max((int )@$_GET[self
::PAGE_ID
], 1);
223 * Get the number of rows to display from either a GET / POST variable
225 * @param int $defaultPageRowCount the default value if not set
227 * @return int the rowCount value to use
231 function getPageRowCount($defaultPageRowCount = self
::ROWCOUNT
) {
232 // POST has higher priority than GET vars
233 if (isset($_POST[self
::PAGE_ROWCOUNT
])) {
234 $rowCount = max((int )@$_POST[self
::PAGE_ROWCOUNT
], 1);
236 elseif (isset($_GET[self
::PAGE_ROWCOUNT
])) {
237 $rowCount = max((int )@$_GET[self
::PAGE_ROWCOUNT
], 1);
240 $rowCount = $defaultPageRowCount;
246 * Use the pager class to get the pageId and Offset
250 * @return array: an array of the pageID and offset
255 function getOffsetAndRowCount() {
256 $pageId = $this->getCurrentPageID();
261 $offset = ($pageId - 1) * $this->_perPage
;
263 return array($offset, $this->_perPage
);
267 * given a number create a link that will display the number of
268 * rows as specified by that link
270 * @param int $perPage the number of rows
272 * @return string the link
275 function getPerPageLink($perPage) {
276 if ($perPage != $this->_perPage
) {
277 $href = $this->makeURL(self
::PAGE_ROWCOUNT
, $perPage);
278 $link = sprintf('<a href="%s" %s>%s</a>',
282 ) . $this->_spacesBefore
. $this->_spacesAfter
;
285 $link = $this->_spacesBefore
. $perPage . $this->_spacesAfter
;
291 function getFirstPageLink() {
292 if ($this->isFirstPage()) {
296 $href = $this->makeURL(self
::PAGE_ID
, 1);
297 return sprintf('<a href="%s" title="%s">%s</a>',
299 str_replace('%d', 1, $this->_altFirst
),
300 $this->_firstPagePre
. $this->_firstPageText
. $this->_firstPagePost
301 ) . $this->_spacesBefore
. $this->_spacesAfter
;
304 function getLastPageLink() {
305 if ($this->isLastPage()) {
309 $href = $this->makeURL(self
::PAGE_ID
, $this->_totalPages
);
310 return sprintf('<a href="%s" title="%s">%s</a>',
312 str_replace('%d', $this->_totalPages
, $this->_altLast
),
313 $this->_lastPagePre
. $this->_lastPageText
. $this->_lastPagePost
317 function getBackPageLink() {
318 if ($this->_currentPage
> 1) {
319 $href = $this->makeURL(self
::PAGE_ID
, $this->getPreviousPageID());
320 return sprintf('<a href="%s" title="%s">%s</a>',
322 $this->_altPrev
, $this->_prevImg
323 ) . $this->_spacesBefore
. $this->_spacesAfter
;
328 function getNextPageLink() {
329 if ($this->_currentPage
< $this->_totalPages
) {
330 $href = $this->makeURL(self
::PAGE_ID
, $this->getNextPageID());
331 return $this->_spacesAfter
. sprintf('<a href="%s" title="%s">%s</a>',
333 $this->_altNext
, $this->_nextImg
334 ) . $this->_spacesBefore
. $this->_spacesAfter
;
340 * Build a url for pager links
342 function makeURL($key, $value) {
343 $href = CRM_Utils_System
::makeURL($key);
344 // CRM-12212 Remove alpha sort param
345 if (strpos($href, '&sortByCharacter=')) {
346 $href = preg_replace('#(.*)\&sortByCharacter=[^&]*(.*)#', '\1\2', $href);
348 return $href . $value;