blob: f190d55fd5d23adac74f92e7bf2302d9e087714e [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
Aaron Kuzemchaka5e13f92011-09-04 16:39:47 -0400133 $base_page = ($this->use_page_numbers) ? 1 : 0;
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400134
Derek Allardfaac15e2009-03-07 17:17:58 +0000135 // Determine the current page number.
Derek Allard2067d1a2008-11-13 22:59:24 +0000136 $CI =& get_instance();
Derek Allardfaac15e2009-03-07 17:17:58 +0000137
Derek Allard2067d1a2008-11-13 22:59:24 +0000138 if ($CI->config->item('enable_query_strings') === TRUE OR $this->page_query_string === TRUE)
139 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400140 if ($CI->input->get($this->query_string_segment) != $base_page)
Derek Allard2067d1a2008-11-13 22:59:24 +0000141 {
142 $this->cur_page = $CI->input->get($this->query_string_segment);
Derek Allardfaac15e2009-03-07 17:17:58 +0000143
Derek Allard2067d1a2008-11-13 22:59:24 +0000144 // Prep the current page - no funny business!
145 $this->cur_page = (int) $this->cur_page;
146 }
147 }
148 else
149 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400150 if ($CI->uri->segment($this->uri_segment) != $base_page)
Derek Allard2067d1a2008-11-13 22:59:24 +0000151 {
152 $this->cur_page = $CI->uri->segment($this->uri_segment);
Derek Allardfaac15e2009-03-07 17:17:58 +0000153
Derek Allard2067d1a2008-11-13 22:59:24 +0000154 // Prep the current page - no funny business!
155 $this->cur_page = (int) $this->cur_page;
156 }
157 }
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400158
159 // Set current page to 1 if using page numbers instead of offset
160 if ($this->use_page_numbers AND $this->cur_page == 0)
161 {
162 $this->cur_page = $base_page;
163 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000164
165 $this->num_links = (int)$this->num_links;
Derek Allardfaac15e2009-03-07 17:17:58 +0000166
Derek Allard2067d1a2008-11-13 22:59:24 +0000167 if ($this->num_links < 1)
168 {
169 show_error('Your number of links must be a positive number.');
170 }
Derek Allardfaac15e2009-03-07 17:17:58 +0000171
Derek Allard2067d1a2008-11-13 22:59:24 +0000172 if ( ! is_numeric($this->cur_page))
173 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400174 $this->cur_page = $base_page;
Derek Allard2067d1a2008-11-13 22:59:24 +0000175 }
Derek Allardfaac15e2009-03-07 17:17:58 +0000176
Derek Allard2067d1a2008-11-13 22:59:24 +0000177 // Is the page number beyond the result range?
178 // If so we show the last page
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400179 if ($this->use_page_numbers)
Derek Allard2067d1a2008-11-13 22:59:24 +0000180 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400181 if ($this->cur_page > $num_pages)
182 {
183 $this->cur_page = $num_pages;
184 }
185 }
186 else
187 {
188 if ($this->cur_page > $this->total_rows)
189 {
190 $this->cur_page = ($num_pages - 1) * $this->per_page;
191 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000192 }
Derek Allardfaac15e2009-03-07 17:17:58 +0000193
Derek Allard2067d1a2008-11-13 22:59:24 +0000194 $uri_page_number = $this->cur_page;
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400195
196 if ( ! $this->use_page_numbers)
197 {
198 $this->cur_page = floor(($this->cur_page/$this->per_page) + 1);
199 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000200
201 // Calculate the start and end numbers. These determine
202 // which number to start and end the digit links with
203 $start = (($this->cur_page - $this->num_links) > 0) ? $this->cur_page - ($this->num_links - 1) : 1;
Derek Jones4b9c6292011-07-01 17:40:48 -0500204 $end = (($this->cur_page + $this->num_links) < $num_pages) ? $this->cur_page + $this->num_links : $num_pages;
Derek Allard2067d1a2008-11-13 22:59:24 +0000205
Derek Jones4b9c6292011-07-01 17:40:48 -0500206 // Is pagination being used over GET or POST? If get, add a per_page query
Derek Allard2067d1a2008-11-13 22:59:24 +0000207 // string. If post, add a trailing slash to the base URL if needed
208 if ($CI->config->item('enable_query_strings') === TRUE OR $this->page_query_string === TRUE)
209 {
210 $this->base_url = rtrim($this->base_url).'&amp;'.$this->query_string_segment.'=';
211 }
212 else
213 {
214 $this->base_url = rtrim($this->base_url, '/') .'/';
215 }
216
Barry Mienydd671972010-10-04 16:33:58 +0200217 // And here we go...
Derek Allard2067d1a2008-11-13 22:59:24 +0000218 $output = '';
219
220 // Render the "First" link
Derek Jones4b9c6292011-07-01 17:40:48 -0500221 if ($this->first_link !== FALSE AND $this->cur_page > ($this->num_links + 1))
Derek Allard2067d1a2008-11-13 22:59:24 +0000222 {
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400223 $first_url = ($this->first_url == '') ? $this->base_url : $this->first_url;
Derek Allard96bb75c2010-07-05 10:54:30 -0400224 $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 +0000225 }
226
227 // Render the "previous" link
Derek Jones4b9c6292011-07-01 17:40:48 -0500228 if ($this->prev_link !== FALSE AND $this->cur_page != 1)
Derek Allard2067d1a2008-11-13 22:59:24 +0000229 {
Aaron Kuzemchaka5e13f92011-09-04 16:39:47 -0400230 $i = ($this->use_page_numbers) ? $uri_page_number - 1 : $uri_page_number - $this->per_page;
Barry Mienydd671972010-10-04 16:33:58 +0200231
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400232 if ($i == 0 && $this->first_url != '')
233 {
Barry Mienydd671972010-10-04 16:33:58 +0200234 $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 -0400235 }
236 else
237 {
238 $i = ($i == 0) ? '' : $this->prefix.$i.$this->suffix;
Derek Allard96bb75c2010-07-05 10:54:30 -0400239 $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 -0400240 }
Barry Mienydd671972010-10-04 16:33:58 +0200241
Derek Allard2067d1a2008-11-13 22:59:24 +0000242 }
243
Derek Allarde01fd0f2010-07-05 11:06:07 -0400244 // Render the pages
245 if ($this->display_pages !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000246 {
Derek Allarde01fd0f2010-07-05 11:06:07 -0400247 // Write the digit links
248 for ($loop = $start -1; $loop <= $end; $loop++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000249 {
Aaron Kuzemchaka5e13f92011-09-04 16:39:47 -0400250 $i = ($this->use_page_numbers) ? $loop : ($loop * $this->per_page) - $this->per_page;
Derek Allarde01fd0f2010-07-05 11:06:07 -0400251
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400252 if ($i >= $base_page)
Derek Allard2067d1a2008-11-13 22:59:24 +0000253 {
Derek Allarde01fd0f2010-07-05 11:06:07 -0400254 if ($this->cur_page == $loop)
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400255 {
Derek Allarde01fd0f2010-07-05 11:06:07 -0400256 $output .= $this->cur_tag_open.$loop.$this->cur_tag_close; // Current page
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400257 }
258 else
259 {
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400260 $n = ($i == $base_page) ? '' : $i;
Barry Mienydd671972010-10-04 16:33:58 +0200261
Derek Allarde01fd0f2010-07-05 11:06:07 -0400262 if ($n == '' && $this->first_url != '')
263 {
264 $output .= $this->num_tag_open.'<a '.$this->anchor_class.'href="'.$this->first_url.'">'.$loop.'</a>'.$this->num_tag_close;
265 }
266 else
267 {
268 $n = ($n == '') ? '' : $this->prefix.$n.$this->suffix;
Barry Mienydd671972010-10-04 16:33:58 +0200269
Derek Allarde01fd0f2010-07-05 11:06:07 -0400270 $output .= $this->num_tag_open.'<a '.$this->anchor_class.'href="'.$this->base_url.$n.'">'.$loop.'</a>'.$this->num_tag_close;
271 }
Robin Sowell2a6c1da2010-05-24 12:20:03 -0400272 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000273 }
274 }
275 }
276
277 // Render the "next" link
Derek Allard96bb75c2010-07-05 10:54:30 -0400278 if ($this->next_link !== FALSE AND $this->cur_page < $num_pages)
Derek Allard2067d1a2008-11-13 22:59:24 +0000279 {
Aaron Kuzemchaka5e13f92011-09-04 16:39:47 -0400280 $i = ($this->use_page_numbers) ? $this->cur_page + 1 : $this->cur_page * $this->per_page;
Aaron Kuzemchak11c5f162011-09-03 20:59:07 -0400281
282 $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 +0000283 }
284
285 // Render the "Last" link
Derek Allard96bb75c2010-07-05 10:54:30 -0400286 if ($this->last_link !== FALSE AND ($this->cur_page + $this->num_links) < $num_pages)
Derek Allard2067d1a2008-11-13 22:59:24 +0000287 {
Aaron Kuzemchaka5e13f92011-09-04 16:39:47 -0400288 $i = ($this->use_page_numbers) ? $num_pages : ($num_pages * $this->per_page) - $this->per_page;
289
Derek Allard96bb75c2010-07-05 10:54:30 -0400290 $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 +0000291 }
292
Derek Jones4b9c6292011-07-01 17:40:48 -0500293 // Kill double slashes. Note: Sometimes we can end up with a double slash
Derek Allard2067d1a2008-11-13 22:59:24 +0000294 // in the penultimate link so we'll kill all double slashes.
295 $output = preg_replace("#([^:])//+#", "\\1/", $output);
296
297 // Add the wrapper HTML if exists
298 $output = $this->full_tag_open.$output.$this->full_tag_close;
Derek Allardfaac15e2009-03-07 17:17:58 +0000299
300 return $output;
Derek Allard2067d1a2008-11-13 22:59:24 +0000301 }
302}
303// END Pagination Class
304
305/* End of file Pagination.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000306/* Location: ./system/libraries/Pagination.php */