blob: cdaacf2d423258c5763aac2c0ddb950e101ccc79 [file] [log] [blame]
Derek Jones4b9c6292011-07-01 17:40:48 -05001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Greg Aker741de1c2010-11-10 14:52:57 -06005 * An open source application development framework for PHP 5.1.6 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
7 * @package CodeIgniter
8 * @author ExpressionEngine Dev Team
Greg Aker0711dc82011-01-05 10:49:40 -06009 * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
Derek Allard2067d1a2008-11-13 22:59:24 +000010 * @license http://codeigniter.com/user_guide/license.html
11 * @link http://codeigniter.com
12 * @since Version 1.0
13 * @filesource
14 */
15
16// ------------------------------------------------------------------------
17
18/**
19 * Pagination Class
20 *
21 * @package CodeIgniter
22 * @subpackage Libraries
23 * @category Pagination
24 * @author ExpressionEngine Dev Team
25 * @link http://codeigniter.com/user_guide/libraries/pagination.html
26 */
27class CI_Pagination {
28
29 var $base_url = ''; // The page we are linking to
Robin Sowell2a6c1da2010-05-24 12:20:03 -040030 var $prefix = ''; // A custom prefix added to the path.
31 var $suffix = ''; // A custom suffix added to the path.
32
Derek Jones4b9c6292011-07-01 17:40:48 -050033 var $total_rows = 0; // Total number of items (database results)
Barry Mienydd671972010-10-04 16:33:58 +020034 var $per_page = 10; // Max number of items you want shown per page
Derek Jones4b9c6292011-07-01 17:40:48 -050035 var $num_links = 2; // Number of "digit" links to show before/after the currently viewed page
36 var $cur_page = 0; // The current page being viewed
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -040037 var $use_page_numbers = FALSE; // Use page number for segment instead of offset
Barry Mienydd671972010-10-04 16:33:58 +020038 var $first_link = '&lsaquo; First';
Derek Allard2067d1a2008-11-13 22:59:24 +000039 var $next_link = '&gt;';
40 var $prev_link = '&lt;';
41 var $last_link = 'Last &rsaquo;';
42 var $uri_segment = 3;
43 var $full_tag_open = '';
44 var $full_tag_close = '';
45 var $first_tag_open = '';
46 var $first_tag_close = '&nbsp;';
47 var $last_tag_open = '&nbsp;';
48 var $last_tag_close = '';
Robin Sowell2a6c1da2010-05-24 12:20:03 -040049 var $first_url = ''; // Alternative URL for the First Page.
Derek Allard2067d1a2008-11-13 22:59:24 +000050 var $cur_tag_open = '&nbsp;<strong>';
51 var $cur_tag_close = '</strong>';
52 var $next_tag_open = '&nbsp;';
53 var $next_tag_close = '&nbsp;';
54 var $prev_tag_open = '&nbsp;';
55 var $prev_tag_close = '';
56 var $num_tag_open = '&nbsp;';
57 var $num_tag_close = '';
58 var $page_query_string = FALSE;
59 var $query_string_segment = 'per_page';
Derek Allarde01fd0f2010-07-05 11:06:07 -040060 var $display_pages = TRUE;
Derek Allard96bb75c2010-07-05 10:54:30 -040061 var $anchor_class = '';
Derek Allard2067d1a2008-11-13 22:59:24 +000062
63 /**
64 * Constructor
65 *
66 * @access public
67 * @param array initialization parameters
68 */
Greg Akera9263282010-11-10 15:26:43 -060069 public function __construct($params = array())
Derek Allard2067d1a2008-11-13 22:59:24 +000070 {
71 if (count($params) > 0)
72 {
Derek Allardfaac15e2009-03-07 17:17:58 +000073 $this->initialize($params);
Derek Allard2067d1a2008-11-13 22:59:24 +000074 }
Derek Allardfaac15e2009-03-07 17:17:58 +000075
Derek Allard96bb75c2010-07-05 10:54:30 -040076 if ($this->anchor_class != '')
77 {
78 $this->anchor_class = 'class="'.$this->anchor_class.'" ';
79 }
80
Derek Allard2067d1a2008-11-13 22:59:24 +000081 log_message('debug', "Pagination Class Initialized");
82 }
Derek Allardfaac15e2009-03-07 17:17:58 +000083
Derek Allard2067d1a2008-11-13 22:59:24 +000084 // --------------------------------------------------------------------
Derek Allardfaac15e2009-03-07 17:17:58 +000085
Derek Allard2067d1a2008-11-13 22:59:24 +000086 /**
87 * Initialize Preferences
88 *
89 * @access public
90 * @param array initialization parameters
91 * @return void
92 */
93 function initialize($params = array())
94 {
95 if (count($params) > 0)
96 {
97 foreach ($params as $key => $val)
98 {
99 if (isset($this->$key))
100 {
101 $this->$key = $val;
102 }
103 }
104 }
105 }
Derek Allardfaac15e2009-03-07 17:17:58 +0000106
Derek Allard2067d1a2008-11-13 22:59:24 +0000107 // --------------------------------------------------------------------
Derek Allardfaac15e2009-03-07 17:17:58 +0000108
Derek Allard2067d1a2008-11-13 22:59:24 +0000109 /**
110 * Generate the pagination links
111 *
112 * @access public
113 * @return string
Derek Allardfaac15e2009-03-07 17:17:58 +0000114 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000115 function create_links()
116 {
117 // If our item count or per-page total is zero there is no need to continue.
118 if ($this->total_rows == 0 OR $this->per_page == 0)
119 {
Derek Allardfaac15e2009-03-07 17:17:58 +0000120 return '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000121 }
122
123 // Calculate the total number of pages
124 $num_pages = ceil($this->total_rows / $this->per_page);
125
126 // Is there only one page? Hm... nothing more to do here then.
127 if ($num_pages == 1)
128 {
129 return '';
130 }
131
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400132 // Set the base page index for starting page number
133 if ($this->use_page_numbers)
134 {
135 $base_page = 1;
136 }
137 else
138 {
139 $base_page = 0;
140 }
141
Derek Allardfaac15e2009-03-07 17:17:58 +0000142 // Determine the current page number.
Derek Allard2067d1a2008-11-13 22:59:24 +0000143 $CI =& get_instance();
Derek Allardfaac15e2009-03-07 17:17:58 +0000144
Derek Allard2067d1a2008-11-13 22:59:24 +0000145 if ($CI->config->item('enable_query_strings') === TRUE OR $this->page_query_string === TRUE)
146 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400147 if ($CI->input->get($this->query_string_segment) != $base_page)
Derek Allard2067d1a2008-11-13 22:59:24 +0000148 {
149 $this->cur_page = $CI->input->get($this->query_string_segment);
Derek Allardfaac15e2009-03-07 17:17:58 +0000150
Derek Allard2067d1a2008-11-13 22:59:24 +0000151 // Prep the current page - no funny business!
152 $this->cur_page = (int) $this->cur_page;
153 }
154 }
155 else
156 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400157 if ($CI->uri->segment($this->uri_segment) != $base_page)
Derek Allard2067d1a2008-11-13 22:59:24 +0000158 {
159 $this->cur_page = $CI->uri->segment($this->uri_segment);
Derek Allardfaac15e2009-03-07 17:17:58 +0000160
Derek Allard2067d1a2008-11-13 22:59:24 +0000161 // Prep the current page - no funny business!
162 $this->cur_page = (int) $this->cur_page;
163 }
164 }
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400165
166 // Set current page to 1 if using page numbers instead of offset
167 if ($this->use_page_numbers AND $this->cur_page == 0)
168 {
169 $this->cur_page = $base_page;
170 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000171
172 $this->num_links = (int)$this->num_links;
Derek Allardfaac15e2009-03-07 17:17:58 +0000173
Derek Allard2067d1a2008-11-13 22:59:24 +0000174 if ($this->num_links < 1)
175 {
176 show_error('Your number of links must be a positive number.');
177 }
Derek Allardfaac15e2009-03-07 17:17:58 +0000178
Derek Allard2067d1a2008-11-13 22:59:24 +0000179 if ( ! is_numeric($this->cur_page))
180 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400181 $this->cur_page = $base_page;
Derek Allard2067d1a2008-11-13 22:59:24 +0000182 }
Derek Allardfaac15e2009-03-07 17:17:58 +0000183
Derek Allard2067d1a2008-11-13 22:59:24 +0000184 // Is the page number beyond the result range?
185 // If so we show the last page
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400186 if ($this->use_page_numbers)
Derek Allard2067d1a2008-11-13 22:59:24 +0000187 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400188 if ($this->cur_page > $num_pages)
189 {
190 $this->cur_page = $num_pages;
191 }
192 }
193 else
194 {
195 if ($this->cur_page > $this->total_rows)
196 {
197 $this->cur_page = ($num_pages - 1) * $this->per_page;
198 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000199 }
Derek Allardfaac15e2009-03-07 17:17:58 +0000200
Derek Allard2067d1a2008-11-13 22:59:24 +0000201 $uri_page_number = $this->cur_page;
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400202
203 if ( ! $this->use_page_numbers)
204 {
205 $this->cur_page = floor(($this->cur_page/$this->per_page) + 1);
206 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000207
208 // Calculate the start and end numbers. These determine
209 // which number to start and end the digit links with
210 $start = (($this->cur_page - $this->num_links) > 0) ? $this->cur_page - ($this->num_links - 1) : 1;
Derek Jones4b9c6292011-07-01 17:40:48 -0500211 $end = (($this->cur_page + $this->num_links) < $num_pages) ? $this->cur_page + $this->num_links : $num_pages;
Derek Allard2067d1a2008-11-13 22:59:24 +0000212
Derek Jones4b9c6292011-07-01 17:40:48 -0500213 // Is pagination being used over GET or POST? If get, add a per_page query
Derek Allard2067d1a2008-11-13 22:59:24 +0000214 // string. If post, add a trailing slash to the base URL if needed
215 if ($CI->config->item('enable_query_strings') === TRUE OR $this->page_query_string === TRUE)
216 {
217 $this->base_url = rtrim($this->base_url).'&amp;'.$this->query_string_segment.'=';
218 }
219 else
220 {
221 $this->base_url = rtrim($this->base_url, '/') .'/';
222 }
223
Barry Mienydd671972010-10-04 16:33:58 +0200224 // And here we go...
Derek Allard2067d1a2008-11-13 22:59:24 +0000225 $output = '';
226
227 // Render the "First" link
Derek Jones4b9c6292011-07-01 17:40:48 -0500228 if ($this->first_link !== FALSE AND $this->cur_page > ($this->num_links + 1))
Derek Allard2067d1a2008-11-13 22:59:24 +0000229 {
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400230 $first_url = ($this->first_url == '') ? $this->base_url : $this->first_url;
Derek Allard96bb75c2010-07-05 10:54:30 -0400231 $output .= $this->first_tag_open.'<a '.$this->anchor_class.'href="'.$first_url.'">'.$this->first_link.'</a>'.$this->first_tag_close;
Derek Allard2067d1a2008-11-13 22:59:24 +0000232 }
233
234 // Render the "previous" link
Derek Jones4b9c6292011-07-01 17:40:48 -0500235 if ($this->prev_link !== FALSE AND $this->cur_page != 1)
Derek Allard2067d1a2008-11-13 22:59:24 +0000236 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400237 if ($this->use_page_numbers)
238 {
239 $i = $uri_page_number - 1;
240 }
241 else
242 {
243 $i = $uri_page_number - $this->per_page;
244 }
Barry Mienydd671972010-10-04 16:33:58 +0200245
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400246 if ($i == 0 && $this->first_url != '')
247 {
Barry Mienydd671972010-10-04 16:33:58 +0200248 $output .= $this->prev_tag_open.'<a '.$this->anchor_class.'href="'.$this->first_url.'">'.$this->prev_link.'</a>'.$this->prev_tag_close;
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400249 }
250 else
251 {
252 $i = ($i == 0) ? '' : $this->prefix.$i.$this->suffix;
Derek Allard96bb75c2010-07-05 10:54:30 -0400253 $output .= $this->prev_tag_open.'<a '.$this->anchor_class.'href="'.$this->base_url.$i.'">'.$this->prev_link.'</a>'.$this->prev_tag_close;
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400254 }
Barry Mienydd671972010-10-04 16:33:58 +0200255
Derek Allard2067d1a2008-11-13 22:59:24 +0000256 }
257
Derek Allarde01fd0f2010-07-05 11:06:07 -0400258 // Render the pages
259 if ($this->display_pages !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000260 {
Derek Allarde01fd0f2010-07-05 11:06:07 -0400261 // Write the digit links
262 for ($loop = $start -1; $loop <= $end; $loop++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000263 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400264 if ($this->use_page_numbers)
265 {
266 $i = $loop;
267 }
268 else
269 {
270 $i = ($loop * $this->per_page) - $this->per_page;
271 }
Derek Allarde01fd0f2010-07-05 11:06:07 -0400272
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400273 if ($i >= $base_page)
Derek Allard2067d1a2008-11-13 22:59:24 +0000274 {
Derek Allarde01fd0f2010-07-05 11:06:07 -0400275 if ($this->cur_page == $loop)
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400276 {
Derek Allarde01fd0f2010-07-05 11:06:07 -0400277 $output .= $this->cur_tag_open.$loop.$this->cur_tag_close; // Current page
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400278 }
279 else
280 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400281 $n = ($i == $base_page) ? '' : $i;
Barry Mienydd671972010-10-04 16:33:58 +0200282
Derek Allarde01fd0f2010-07-05 11:06:07 -0400283 if ($n == '' && $this->first_url != '')
284 {
285 $output .= $this->num_tag_open.'<a '.$this->anchor_class.'href="'.$this->first_url.'">'.$loop.'</a>'.$this->num_tag_close;
286 }
287 else
288 {
289 $n = ($n == '') ? '' : $this->prefix.$n.$this->suffix;
Barry Mienydd671972010-10-04 16:33:58 +0200290
Derek Allarde01fd0f2010-07-05 11:06:07 -0400291 $output .= $this->num_tag_open.'<a '.$this->anchor_class.'href="'.$this->base_url.$n.'">'.$loop.'</a>'.$this->num_tag_close;
292 }
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400293 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000294 }
295 }
296 }
297
298 // Render the "next" link
Derek Allard96bb75c2010-07-05 10:54:30 -0400299 if ($this->next_link !== FALSE AND $this->cur_page < $num_pages)
Derek Allard2067d1a2008-11-13 22:59:24 +0000300 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400301 if ($this->use_page_numbers)
302 {
303 $i = $this->cur_page + 1;
304 }
305 else
306 {
307 $i = ($this->cur_page * $this->per_page);
308 }
309
310 $output .= $this->next_tag_open.'<a '.$this->anchor_class.'href="'.$this->base_url.$this->prefix.$i.$this->suffix.'">'.$this->next_link.'</a>'.$this->next_tag_close;
Derek Allard2067d1a2008-11-13 22:59:24 +0000311 }
312
313 // Render the "Last" link
Derek Allard96bb75c2010-07-05 10:54:30 -0400314 if ($this->last_link !== FALSE AND ($this->cur_page + $this->num_links) < $num_pages)
Derek Allard2067d1a2008-11-13 22:59:24 +0000315 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400316 if ($this->use_page_numbers)
317 {
318 $i = $num_pages;
319 }
320 else
321 {
322 $i = (($num_pages * $this->per_page) - $this->per_page);
323 }
Derek Allard96bb75c2010-07-05 10:54:30 -0400324 $output .= $this->last_tag_open.'<a '.$this->anchor_class.'href="'.$this->base_url.$this->prefix.$i.$this->suffix.'">'.$this->last_link.'</a>'.$this->last_tag_close;
Derek Allard2067d1a2008-11-13 22:59:24 +0000325 }
326
Derek Jones4b9c6292011-07-01 17:40:48 -0500327 // Kill double slashes. Note: Sometimes we can end up with a double slash
Derek Allard2067d1a2008-11-13 22:59:24 +0000328 // in the penultimate link so we'll kill all double slashes.
329 $output = preg_replace("#([^:])//+#", "\\1/", $output);
330
331 // Add the wrapper HTML if exists
332 $output = $this->full_tag_open.$output.$this->full_tag_close;
Derek Allardfaac15e2009-03-07 17:17:58 +0000333
334 return $output;
Derek Allard2067d1a2008-11-13 22:59:24 +0000335 }
336}
337// END Pagination Class
338
339/* End of file Pagination.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000340/* Location: ./system/libraries/Pagination.php */