Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16591 anikendra 1
<?php
2
/**
3
 * Pagination Helper class file.
4
 *
5
 * Generates pagination links
6
 *
7
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
8
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
9
 *
10
 * Licensed under The MIT License
11
 * For full copyright and license information, please see the LICENSE.txt
12
 * Redistributions of files must retain the above copyright notice.
13
 *
14
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
15
 * @link          http://cakephp.org CakePHP(tm) Project
16
 * @package       Cake.View.Helper
17
 * @since         CakePHP(tm) v 1.2.0
18
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
19
 */
20
 
21
App::uses('AppHelper', 'View/Helper');
22
 
23
/**
24
 * Pagination Helper class for easy generation of pagination links.
25
 *
26
 * PaginationHelper encloses all methods needed when working with pagination.
27
 *
28
 * @package       Cake.View.Helper
29
 * @property      HtmlHelper $Html
30
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html
31
 */
32
class PaginatorHelper extends AppHelper {
33
 
34
/**
35
 * Helper dependencies
36
 *
37
 * @var array
38
 */
39
	public $helpers = array('Html');
40
 
41
/**
42
 * The class used for 'Ajax' pagination links. Defaults to JsHelper. You should make sure
43
 * that JsHelper is defined as a helper before PaginatorHelper, if you want to customize the JsHelper.
44
 *
45
 * @var string
46
 */
47
	protected $_ajaxHelperClass = 'Js';
48
 
49
/**
50
 * Holds the default options for pagination links
51
 *
52
 * The values that may be specified are:
53
 *
54
 * - `format` Format of the counter. Supported formats are 'range' and 'pages'
55
 *    and custom (default). In the default mode the supplied string is parsed and constants are replaced
56
 *    by their actual values.
57
 *    placeholders: %page%, %pages%, %current%, %count%, %start%, %end% .
58
 * - `separator` The separator of the actual page and number of pages (default: ' of ').
59
 * - `url` Url of the action. See Router::url()
60
 * - `url['sort']`  the key that the recordset is sorted.
61
 * - `url['direction']` Direction of the sorting (default: 'asc').
62
 * - `url['page']` Page number to use in links.
63
 * - `model` The name of the model.
64
 * - `escape` Defines if the title field for the link should be escaped (default: true).
65
 * - `update` DOM id of the element updated with the results of the AJAX call.
66
 *     If this key isn't specified Paginator will use plain HTML links.
67
 * - `paging['paramType']` The type of parameters to use when creating links. Valid options are
68
 *     'querystring' and 'named'. See PaginatorComponent::$settings for more information.
69
 * - `convertKeys` - A list of keys in URL arrays that should be converted to querysting params
70
 *    if paramType == 'querystring'.
71
 *
72
 * @var array
73
 */
74
	public $options = array(
75
		'convertKeys' => array('page', 'limit', 'sort', 'direction')
76
	);
77
 
78
/**
79
 * Constructor for the helper. Sets up the helper that is used for creating 'AJAX' links.
80
 *
81
 * Use `public $helpers = array('Paginator' => array('ajax' => 'CustomHelper'));` to set a custom Helper
82
 * or choose a non JsHelper Helper. If you want to use a specific library with JsHelper declare JsHelper and its
83
 * adapter before including PaginatorHelper in your helpers array.
84
 *
85
 * The chosen custom helper must implement a `link()` method.
86
 *
87
 * @param View $View the view object the helper is attached to.
88
 * @param array $settings Array of settings.
89
 * @throws CakeException When the AjaxProvider helper does not implement a link method.
90
 */
91
	public function __construct(View $View, $settings = array()) {
92
		$ajaxProvider = isset($settings['ajax']) ? $settings['ajax'] : 'Js';
93
		$this->helpers[] = $ajaxProvider;
94
		$this->_ajaxHelperClass = $ajaxProvider;
95
		App::uses($ajaxProvider . 'Helper', 'View/Helper');
96
		$classname = $ajaxProvider . 'Helper';
97
		if (!class_exists($classname) || !method_exists($classname, 'link')) {
98
			throw new CakeException(
99
				__d('cake_dev', '%s does not implement a %s method, it is incompatible with %s', $classname, 'link()', 'PaginatorHelper')
100
			);
101
		}
102
		parent::__construct($View, $settings);
103
	}
104
 
105
/**
106
 * Before render callback. Overridden to merge passed args with URL options.
107
 *
108
 * @param string $viewFile View file name.
109
 * @return void
110
 */
111
	public function beforeRender($viewFile) {
112
		$this->options['url'] = array_merge($this->request->params['pass'], $this->request->params['named']);
113
		if (!empty($this->request->query)) {
114
			$this->options['url']['?'] = $this->request->query;
115
		}
116
		parent::beforeRender($viewFile);
117
	}
118
 
119
/**
120
 * Gets the current paging parameters from the resultset for the given model
121
 *
122
 * @param string $model Optional model name. Uses the default if none is specified.
123
 * @return array The array of paging parameters for the paginated resultset.
124
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::params
125
 */
126
	public function params($model = null) {
127
		if (empty($model)) {
128
			$model = $this->defaultModel();
129
		}
130
		if (!isset($this->request->params['paging']) || empty($this->request->params['paging'][$model])) {
131
			return array(
132
				'prevPage' => false,
133
				'nextPage' => true,
134
				'paramType' => 'named',
135
				'pageCount' => 1,
136
				'options' => array(),
137
				'page' => 1
138
			);
139
		}
140
		return $this->request->params['paging'][$model];
141
	}
142
 
143
/**
144
 * Convenience access to any of the paginator params.
145
 *
146
 * @param string $key Key of the paginator params array to retrieve.
147
 * @param string $model Optional model name. Uses the default if none is specified.
148
 * @return mixed Content of the requested param.
149
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::params
150
 */
151
	public function param($key, $model = null) {
152
		$params = $this->params($model);
153
		if (!isset($params[$key])) {
154
			return null;
155
		}
156
		return $params[$key];
157
	}
158
 
159
/**
160
 * Sets default options for all pagination links
161
 *
162
 * @param array|string $options Default options for pagination links. If a string is supplied - it
163
 *   is used as the DOM id element to update. See PaginatorHelper::$options for list of keys.
164
 * @return void
165
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::options
166
 */
167
	public function options($options = array()) {
168
		if (is_string($options)) {
169
			$options = array('update' => $options);
170
		}
171
 
172
		if (!empty($options['paging'])) {
173
			if (!isset($this->request->params['paging'])) {
174
				$this->request->params['paging'] = array();
175
			}
176
			$this->request->params['paging'] = array_merge($this->request->params['paging'], $options['paging']);
177
			unset($options['paging']);
178
		}
179
		$model = $this->defaultModel();
180
 
181
		if (!empty($options[$model])) {
182
			if (!isset($this->request->params['paging'][$model])) {
183
				$this->request->params['paging'][$model] = array();
184
			}
185
			$this->request->params['paging'][$model] = array_merge(
186
				$this->request->params['paging'][$model], $options[$model]
187
			);
188
			unset($options[$model]);
189
		}
190
		if (!empty($options['convertKeys'])) {
191
			$options['convertKeys'] = array_merge($this->options['convertKeys'], $options['convertKeys']);
192
		}
193
		$this->options = array_filter(array_merge($this->options, $options));
194
	}
195
 
196
/**
197
 * Gets the current page of the recordset for the given model
198
 *
199
 * @param string $model Optional model name. Uses the default if none is specified.
200
 * @return string The current page number of the recordset.
201
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::current
202
 */
203
	public function current($model = null) {
204
		$params = $this->params($model);
205
 
206
		if (isset($params['page'])) {
207
			return $params['page'];
208
		}
209
		return 1;
210
	}
211
 
212
/**
213
 * Gets the current key by which the recordset is sorted
214
 *
215
 * @param string $model Optional model name. Uses the default if none is specified.
216
 * @param array $options Options for pagination links. See #options for list of keys.
217
 * @return string|null The name of the key by which the recordset is being sorted, or
218
 *  null if the results are not currently sorted.
219
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::sortKey
220
 */
221
	public function sortKey($model = null, $options = array()) {
222
		if (empty($options)) {
223
			$params = $this->params($model);
224
			$options = $params['options'];
225
		}
226
		if (isset($options['sort']) && !empty($options['sort'])) {
227
			return $options['sort'];
228
		}
229
		if (isset($options['order'])) {
230
			return is_array($options['order']) ? key($options['order']) : $options['order'];
231
		}
232
		if (isset($params['order'])) {
233
			return is_array($params['order']) ? key($params['order']) : $params['order'];
234
		}
235
		return null;
236
	}
237
 
238
/**
239
 * Gets the current direction the recordset is sorted
240
 *
241
 * @param string $model Optional model name. Uses the default if none is specified.
242
 * @param array $options Options for pagination links. See #options for list of keys.
243
 * @return string The direction by which the recordset is being sorted, or
244
 *  null if the results are not currently sorted.
245
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::sortDir
246
 */
247
	public function sortDir($model = null, $options = array()) {
248
		$dir = null;
249
 
250
		if (empty($options)) {
251
			$params = $this->params($model);
252
			$options = $params['options'];
253
		}
254
 
255
		if (isset($options['direction'])) {
256
			$dir = strtolower($options['direction']);
257
		} elseif (isset($options['order']) && is_array($options['order'])) {
258
			$dir = strtolower(current($options['order']));
259
		} elseif (isset($params['order']) && is_array($params['order'])) {
260
			$dir = strtolower(current($params['order']));
261
		}
262
 
263
		if ($dir === 'desc') {
264
			return 'desc';
265
		}
266
		return 'asc';
267
	}
268
 
269
/**
270
 * Generates a "previous" link for a set of paged records
271
 *
272
 * ### Options:
273
 *
274
 * - `url` Allows sending routing parameters such as controllers, actions or passed arguments.
275
 * - `tag` The tag wrapping tag you want to use, defaults to 'span'. Set this to false to disable this option
276
 * - `escape` Whether you want the contents html entity encoded, defaults to true
277
 * - `model` The model to use, defaults to PaginatorHelper::defaultModel()
278
 * - `disabledTag` Tag to use instead of A tag when there is no previous page
279
 *
280
 * @param string $title Title for the link. Defaults to '<< Previous'.
281
 * @param array $options Options for pagination link. See #options for list of keys.
282
 * @param string $disabledTitle Title when the link is disabled.
283
 * @param array $disabledOptions Options for the disabled pagination link. See #options for list of keys.
284
 * @return string A "previous" link or $disabledTitle text if the link is disabled.
285
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::prev
286
 */
287
	public function prev($title = '<< Previous', $options = array(), $disabledTitle = null, $disabledOptions = array()) {
288
		$defaults = array(
289
			'rel' => 'prev'
290
		);
291
		$options = (array)$options + $defaults;
292
		return $this->_pagingLink('Prev', $title, $options, $disabledTitle, $disabledOptions);
293
	}
294
 
295
/**
296
 * Generates a "next" link for a set of paged records
297
 *
298
 * ### Options:
299
 *
300
 * - `url` Allows sending routing parameters such as controllers, actions or passed arguments.
301
 * - `tag` The tag wrapping tag you want to use, defaults to 'span'. Set this to false to disable this option
302
 * - `escape` Whether you want the contents html entity encoded, defaults to true
303
 * - `model` The model to use, defaults to PaginatorHelper::defaultModel()
304
 * - `disabledTag` Tag to use instead of A tag when there is no next page
305
 *
306
 * @param string $title Title for the link. Defaults to 'Next >>'.
307
 * @param array $options Options for pagination link. See above for list of keys.
308
 * @param string $disabledTitle Title when the link is disabled.
309
 * @param array $disabledOptions Options for the disabled pagination link. See above for list of keys.
310
 * @return string A "next" link or $disabledTitle text if the link is disabled.
311
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::next
312
 */
313
	public function next($title = 'Next >>', $options = array(), $disabledTitle = null, $disabledOptions = array()) {
314
		$defaults = array(
315
			'rel' => 'next'
316
		);
317
		$options = (array)$options + $defaults;
318
		return $this->_pagingLink('Next', $title, $options, $disabledTitle, $disabledOptions);
319
	}
320
 
321
/**
322
 * Generates a sorting link. Sets named parameters for the sort and direction. Handles
323
 * direction switching automatically.
324
 *
325
 * ### Options:
326
 *
327
 * - `escape` Whether you want the contents html entity encoded, defaults to true.
328
 * - `model` The model to use, defaults to PaginatorHelper::defaultModel().
329
 * - `direction` The default direction to use when this link isn't active.
330
 * - `lock` Lock direction. Will only use the default direction then, defaults to false.
331
 *
332
 * @param string $key The name of the key that the recordset should be sorted.
333
 * @param string $title Title for the link. If $title is null $key will be used
334
 *		for the title and will be generated by inflection.
335
 * @param array $options Options for sorting link. See above for list of keys.
336
 * @return string A link sorting default by 'asc'. If the resultset is sorted 'asc' by the specified
337
 *  key the returned link will sort by 'desc'.
338
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::sort
339
 */
340
	public function sort($key, $title = null, $options = array()) {
341
		$options += array('url' => array(), 'model' => null);
342
		$url = $options['url'];
343
		unset($options['url']);
344
 
345
		if (empty($title)) {
346
			$title = $key;
347
 
348
			if (strpos($title, '.') !== false) {
349
				$title = str_replace('.', ' ', $title);
350
			}
351
 
352
			$title = __(Inflector::humanize(preg_replace('/_id$/', '', $title)));
353
		}
354
		$defaultDir = isset($options['direction']) ? $options['direction'] : 'asc';
355
		unset($options['direction']);
356
 
357
		$locked = isset($options['lock']) ? $options['lock'] : false;
358
		unset($options['lock']);
359
 
360
		$sortKey = $this->sortKey($options['model']);
361
		$defaultModel = $this->defaultModel();
362
		$isSorted = (
363
			$sortKey === $key ||
364
			$sortKey === $defaultModel . '.' . $key ||
365
			$key === $defaultModel . '.' . $sortKey
366
		);
367
 
368
		$dir = $defaultDir;
369
		if ($isSorted) {
370
			$dir = $this->sortDir($options['model']) === 'asc' ? 'desc' : 'asc';
371
			$class = $dir === 'asc' ? 'desc' : 'asc';
372
			if (!empty($options['class'])) {
373
				$options['class'] .= ' ' . $class;
374
			} else {
375
				$options['class'] = $class;
376
			}
377
			if ($locked) {
378
				$dir = $defaultDir;
379
				$options['class'] .= ' locked';
380
			}
381
		}
382
		if (is_array($title) && array_key_exists($dir, $title)) {
383
			$title = $title[$dir];
384
		}
385
 
386
		$url = array_merge(array('sort' => $key, 'direction' => $dir), $url, array('order' => null));
387
		return $this->link($title, $url, $options);
388
	}
389
 
390
/**
391
 * Generates a plain or Ajax link with pagination parameters
392
 *
393
 * ### Options
394
 *
395
 * - `update` The Id of the DOM element you wish to update. Creates Ajax enabled links
396
 *    with the AjaxHelper.
397
 * - `escape` Whether you want the contents html entity encoded, defaults to true
398
 * - `model` The model to use, defaults to PaginatorHelper::defaultModel()
399
 *
400
 * @param string $title Title for the link.
401
 * @param string|array $url URL for the action. See Router::url()
402
 * @param array $options Options for the link. See #options for list of keys.
403
 * @return string A link with pagination parameters.
404
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::link
405
 */
406
	public function link($title, $url = array(), $options = array()) {
407
		$options += array('model' => null, 'escape' => true);
408
		$model = $options['model'];
409
		unset($options['model']);
410
 
411
		if (!empty($this->options)) {
412
			$options += $this->options;
413
		}
414
		if (isset($options['url'])) {
415
			$url = array_merge((array)$options['url'], (array)$url);
416
			unset($options['url']);
417
		}
418
		unset($options['convertKeys']);
419
 
420
		$url = $this->url($url, true, $model);
421
 
422
		$obj = isset($options['update']) ? $this->_ajaxHelperClass : 'Html';
423
		return $this->{$obj}->link($title, $url, $options);
424
	}
425
 
426
/**
427
 * Merges passed URL options with current pagination state to generate a pagination URL.
428
 *
429
 * @param array $options Pagination/URL options array
430
 * @param bool $asArray Return the URL as an array, or a URI string
431
 * @param string $model Which model to paginate on
432
 * @return mixed By default, returns a full pagination URL string for use in non-standard contexts (i.e. JavaScript)
433
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::url
434
 */
435
	public function url($options = array(), $asArray = false, $model = null) {
436
		$paging = $this->params($model);
437
		$url = array_merge(array_filter($paging['options']), $options);
438
 
439
		if (isset($url['order'])) {
440
			$sort = $direction = null;
441
			if (is_array($url['order'])) {
442
				list($sort, $direction) = array($this->sortKey($model, $url), current($url['order']));
443
			}
444
			unset($url['order']);
445
			$url = array_merge($url, compact('sort', 'direction'));
446
		}
447
		$url = $this->_convertUrlKeys($url, $paging['paramType']);
448
		if (!empty($url['page']) && $url['page'] == 1) {
449
			$url['page'] = null;
450
		}
451
		if (!empty($url['?']['page']) && $url['?']['page'] == 1) {
452
			unset($url['?']['page']);
453
		}
454
		if ($asArray) {
455
			return $url;
456
		}
457
		return parent::url($url);
458
	}
459
 
460
/**
461
 * Converts the keys being used into the format set by options.paramType
462
 *
463
 * @param array $url Array of URL params to convert
464
 * @param string $type Keys type.
465
 * @return array converted URL params.
466
 */
467
	protected function _convertUrlKeys($url, $type) {
468
		if ($type === 'named') {
469
			return $url;
470
		}
471
		if (!isset($url['?'])) {
472
			$url['?'] = array();
473
		}
474
		foreach ($this->options['convertKeys'] as $key) {
475
			if (isset($url[$key])) {
476
				$url['?'][$key] = $url[$key];
477
				unset($url[$key]);
478
			}
479
		}
480
		return $url;
481
	}
482
 
483
/**
484
 * Protected method for generating prev/next links
485
 *
486
 * @param string $which Link type: 'Prev', 'Next'.
487
 * @param string $title Link title.
488
 * @param array $options Options list.
489
 * @param string $disabledTitle Disabled link title.
490
 * @param array $disabledOptions Disabled link options.
491
 * @return string
492
 */
493
	protected function _pagingLink($which, $title = null, $options = array(), $disabledTitle = null, $disabledOptions = array()) {
494
		$check = 'has' . $which;
495
		$_defaults = array(
496
			'url' => array(), 'step' => 1, 'escape' => true, 'model' => null,
497
			'tag' => 'span', 'class' => strtolower($which), 'disabledTag' => null
498
		);
499
		$options = (array)$options + $_defaults;
500
		$paging = $this->params($options['model']);
501
		if (empty($disabledOptions)) {
502
			$disabledOptions = $options;
503
		}
504
 
505
		if (!$this->{$check}($options['model']) && (!empty($disabledTitle) || !empty($disabledOptions))) {
506
			if (!empty($disabledTitle) && $disabledTitle !== true) {
507
				$title = $disabledTitle;
508
			}
509
			$options = (array)$disabledOptions + array_intersect_key($options, $_defaults) + $_defaults;
510
		} elseif (!$this->{$check}($options['model'])) {
511
			return '';
512
		}
513
 
514
		foreach (array_keys($_defaults) as $key) {
515
			${$key} = $options[$key];
516
			unset($options[$key]);
517
		}
518
 
519
		if ($this->{$check}($model)) {
520
			$url = array_merge(
521
				array('page' => $paging['page'] + ($which === 'Prev' ? $step * -1 : $step)),
522
				$url
523
			);
524
			if ($tag === false) {
525
				return $this->link(
526
					$title,
527
					$url,
528
					compact('escape', 'model', 'class') + $options
529
				);
530
			}
531
			$link = $this->link($title, $url, compact('escape', 'model') + $options);
532
			return $this->Html->tag($tag, $link, compact('class'));
533
		}
534
		unset($options['rel']);
535
		if (!$tag) {
536
			if ($disabledTag) {
537
				$tag = $disabledTag;
538
				$disabledTag = null;
539
			} else {
540
				$tag = $_defaults['tag'];
541
			}
542
		}
543
		if ($disabledTag) {
544
			$title = $this->Html->tag($disabledTag, $title, compact('escape') + $options);
545
			return $this->Html->tag($tag, $title, compact('class'));
546
		}
547
		return $this->Html->tag($tag, $title, compact('escape', 'class') + $options);
548
	}
549
 
550
/**
551
 * Returns true if the given result set is not at the first page
552
 *
553
 * @param string $model Optional model name. Uses the default if none is specified.
554
 * @return bool True if the result set is not at the first page.
555
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::hasPrev
556
 */
557
	public function hasPrev($model = null) {
558
		return $this->_hasPage($model, 'prev');
559
	}
560
 
561
/**
562
 * Returns true if the given result set is not at the last page
563
 *
564
 * @param string $model Optional model name. Uses the default if none is specified.
565
 * @return bool True if the result set is not at the last page.
566
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::hasNext
567
 */
568
	public function hasNext($model = null) {
569
		return $this->_hasPage($model, 'next');
570
	}
571
 
572
/**
573
 * Returns true if the given result set has the page number given by $page
574
 *
575
 * @param string $model Optional model name. Uses the default if none is specified.
576
 * @param int $page The page number - if not set defaults to 1.
577
 * @return bool True if the given result set has the specified page number.
578
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::hasPage
579
 */
580
	public function hasPage($model = null, $page = 1) {
581
		if (is_numeric($model)) {
582
			$page = $model;
583
			$model = null;
584
		}
585
		$paging = $this->params($model);
586
		return $page <= $paging['pageCount'];
587
	}
588
 
589
/**
590
 * Does $model have $page in its range?
591
 *
592
 * @param string $model Model name to get parameters for.
593
 * @param int $page Page number you are checking.
594
 * @return bool Whether model has $page
595
 */
596
	protected function _hasPage($model, $page) {
597
		$params = $this->params($model);
598
		return !empty($params) && $params[$page . 'Page'];
599
	}
600
 
601
/**
602
 * Gets the default model of the paged sets
603
 *
604
 * @return string|null Model name or null if the pagination isn't initialized.
605
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::defaultModel
606
 */
607
	public function defaultModel() {
608
		if ($this->_defaultModel) {
609
			return $this->_defaultModel;
610
		}
611
		if (empty($this->request->params['paging'])) {
612
			return null;
613
		}
614
		list($this->_defaultModel) = array_keys($this->request->params['paging']);
615
		return $this->_defaultModel;
616
	}
617
 
618
/**
619
 * Returns a counter string for the paged result set
620
 *
621
 * ### Options
622
 *
623
 * - `model` The model to use, defaults to PaginatorHelper::defaultModel();
624
 * - `format` The format string you want to use, defaults to 'pages' Which generates output like '1 of 5'
625
 *    set to 'range' to generate output like '1 - 3 of 13'. Can also be set to a custom string, containing
626
 *    the following placeholders `{:page}`, `{:pages}`, `{:current}`, `{:count}`, `{:model}`, `{:start}`, `{:end}` and any
627
 *    custom content you would like.
628
 * - `separator` The separator string to use, default to ' of '
629
 *
630
 * The `%page%` style placeholders also work, but are deprecated and will be removed in a future version.
631
 *
632
 * @param array $options Options for the counter string. See #options for list of keys.
633
 * @return string Counter string.
634
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::counter
635
 */
636
	public function counter($options = array()) {
637
		if (is_string($options)) {
638
			$options = array('format' => $options);
639
		}
640
 
641
		$options += array(
642
			'model' => $this->defaultModel(),
643
			'format' => 'pages',
644
			'separator' => __d('cake', ' of ')
645
		);
646
 
647
		$paging = $this->params($options['model']);
648
		if (!$paging['pageCount']) {
649
			$paging['pageCount'] = 1;
650
		}
651
		$start = 0;
652
		if ($paging['count'] >= 1) {
653
			$start = (($paging['page'] - 1) * $paging['limit']) + 1;
654
		}
655
		$end = $start + $paging['limit'] - 1;
656
		if ($paging['count'] < $end) {
657
			$end = $paging['count'];
658
		}
659
 
660
		switch ($options['format']) {
661
			case 'range':
662
				if (!is_array($options['separator'])) {
663
					$options['separator'] = array(' - ', $options['separator']);
664
				}
665
				$out = $start . $options['separator'][0] . $end . $options['separator'][1];
666
				$out .= $paging['count'];
667
				break;
668
			case 'pages':
669
				$out = $paging['page'] . $options['separator'] . $paging['pageCount'];
670
				break;
671
			default:
672
				$map = array(
673
					'%page%' => $paging['page'],
674
					'%pages%' => $paging['pageCount'],
675
					'%current%' => $paging['current'],
676
					'%count%' => $paging['count'],
677
					'%start%' => $start,
678
					'%end%' => $end,
679
					'%model%' => strtolower(Inflector::humanize(Inflector::tableize($options['model'])))
680
				);
681
				$out = str_replace(array_keys($map), array_values($map), $options['format']);
682
 
683
				$newKeys = array(
684
					'{:page}', '{:pages}', '{:current}', '{:count}', '{:start}', '{:end}', '{:model}'
685
				);
686
				$out = str_replace($newKeys, array_values($map), $out);
687
		}
688
		return $out;
689
	}
690
 
691
/**
692
 * Returns a set of numbers for the paged result set
693
 * uses a modulus to decide how many numbers to show on each side of the current page (default: 8).
694
 *
695
 * `$this->Paginator->numbers(array('first' => 2, 'last' => 2));`
696
 *
697
 * Using the first and last options you can create links to the beginning and end of the page set.
698
 *
699
 * ### Options
700
 *
701
 * - `before` Content to be inserted before the numbers
702
 * - `after` Content to be inserted after the numbers
703
 * - `model` Model to create numbers for, defaults to PaginatorHelper::defaultModel()
704
 * - `modulus` how many numbers to include on either side of the current page, defaults to 8.
705
 * - `separator` Separator content defaults to ' | '
706
 * - `tag` The tag to wrap links in, defaults to 'span'
707
 * - `first` Whether you want first links generated, set to an integer to define the number of 'first'
708
 *    links to generate.
709
 * - `last` Whether you want last links generated, set to an integer to define the number of 'last'
710
 *    links to generate.
711
 * - `ellipsis` Ellipsis content, defaults to '...'
712
 * - `class` Class for wrapper tag
713
 * - `currentClass` Class for wrapper tag on current active page, defaults to 'current'
714
 * - `currentTag` Tag to use for current page number, defaults to null
715
 *
716
 * @param array|bool $options Options for the numbers, (before, after, model, modulus, separator)
717
 * @return string Numbers string.
718
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::numbers
719
 */
720
	public function numbers($options = array()) {
721
		if ($options === true) {
722
			$options = array(
723
				'before' => ' | ', 'after' => ' | ', 'first' => 'first', 'last' => 'last'
724
			);
725
		}
726
 
727
		$defaults = array(
728
			'tag' => 'span', 'before' => null, 'after' => null, 'model' => $this->defaultModel(), 'class' => null,
729
			'modulus' => '8', 'separator' => ' | ', 'first' => null, 'last' => null, 'ellipsis' => '...',
730
			'currentClass' => 'current', 'currentTag' => null
731
		);
732
		$options += $defaults;
733
 
734
		$params = (array)$this->params($options['model']) + array('page' => 1);
735
		unset($options['model']);
736
 
737
		if (empty($params['pageCount']) || $params['pageCount'] <= 1) {
738
			return '';
739
		}
740
 
741
		extract($options);
742
		unset($options['tag'], $options['before'], $options['after'], $options['model'],
743
			$options['modulus'], $options['separator'], $options['first'], $options['last'],
744
			$options['ellipsis'], $options['class'], $options['currentClass'], $options['currentTag']
745
		);
746
 
747
		$out = '';
748
 
749
		if ($modulus && $params['pageCount'] > $modulus) {
750
			$half = (int)($modulus / 2);
751
			$end = $params['page'] + $half;
752
 
753
			if ($end > $params['pageCount']) {
754
				$end = $params['pageCount'];
755
			}
756
			$start = $params['page'] - ($modulus - ($end - $params['page']));
757
			if ($start <= 1) {
758
				$start = 1;
759
				$end = $params['page'] + ($modulus - $params['page']) + 1;
760
			}
761
 
762
			if ($first && $start > 1) {
763
				$offset = ($start <= (int)$first) ? $start - 1 : $first;
764
				if ($offset < $start - 1) {
765
					$out .= $this->first($offset, compact('tag', 'separator', 'ellipsis', 'class'));
766
				} else {
767
					$out .= $this->first($offset, compact('tag', 'separator', 'class', 'ellipsis') + array('after' => $separator));
768
				}
769
			}
770
 
771
			$out .= $before;
772
 
773
			for ($i = $start; $i < $params['page']; $i++) {
774
				$out .= $this->Html->tag($tag, $this->link($i, array('page' => $i), $options), compact('class')) . $separator;
775
			}
776
 
777
			if ($class) {
778
				$currentClass .= ' ' . $class;
779
			}
780
			if ($currentTag) {
781
				$out .= $this->Html->tag($tag, $this->Html->tag($currentTag, $params['page']), array('class' => $currentClass));
782
			} else {
783
				$out .= $this->Html->tag($tag, $params['page'], array('class' => $currentClass));
784
			}
785
			if ($i != $params['pageCount']) {
786
				$out .= $separator;
787
			}
788
 
789
			$start = $params['page'] + 1;
790
			for ($i = $start; $i < $end; $i++) {
791
				$out .= $this->Html->tag($tag, $this->link($i, array('page' => $i), $options), compact('class')) . $separator;
792
			}
793
 
794
			if ($end != $params['page']) {
795
				$out .= $this->Html->tag($tag, $this->link($i, array('page' => $end), $options), compact('class'));
796
			}
797
 
798
			$out .= $after;
799
 
800
			if ($last && $end < $params['pageCount']) {
801
				$offset = ($params['pageCount'] < $end + (int)$last) ? $params['pageCount'] - $end : $last;
802
				if ($offset <= $last && $params['pageCount'] - $end > $offset) {
803
					$out .= $this->last($offset, compact('tag', 'separator', 'ellipsis', 'class'));
804
				} else {
805
					$out .= $this->last($offset, compact('tag', 'separator', 'class', 'ellipsis') + array('before' => $separator));
806
				}
807
			}
808
 
809
		} else {
810
			$out .= $before;
811
 
812
			for ($i = 1; $i <= $params['pageCount']; $i++) {
813
				if ($i == $params['page']) {
814
					if ($class) {
815
						$currentClass .= ' ' . $class;
816
					}
817
					if ($currentTag) {
818
						$out .= $this->Html->tag($tag, $this->Html->tag($currentTag, $i), array('class' => $currentClass));
819
					} else {
820
						$out .= $this->Html->tag($tag, $i, array('class' => $currentClass));
821
					}
822
				} else {
823
					$out .= $this->Html->tag($tag, $this->link($i, array('page' => $i), $options), compact('class'));
824
				}
825
				if ($i != $params['pageCount']) {
826
					$out .= $separator;
827
				}
828
			}
829
 
830
			$out .= $after;
831
		}
832
 
833
		return $out;
834
	}
835
 
836
/**
837
 * Returns a first or set of numbers for the first pages.
838
 *
839
 * `echo $this->Paginator->first('< first');`
840
 *
841
 * Creates a single link for the first page. Will output nothing if you are on the first page.
842
 *
843
 * `echo $this->Paginator->first(3);`
844
 *
845
 * Will create links for the first 3 pages, once you get to the third or greater page. Prior to that
846
 * nothing will be output.
847
 *
848
 * ### Options:
849
 *
850
 * - `tag` The tag wrapping tag you want to use, defaults to 'span'
851
 * - `after` Content to insert after the link/tag
852
 * - `model` The model to use defaults to PaginatorHelper::defaultModel()
853
 * - `separator` Content between the generated links, defaults to ' | '
854
 * - `ellipsis` Content for ellipsis, defaults to '...'
855
 *
856
 * @param string|int $first if string use as label for the link. If numeric, the number of page links
857
 *   you want at the beginning of the range.
858
 * @param array $options An array of options.
859
 * @return string Numbers string.
860
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::first
861
 */
862
	public function first($first = '<< first', $options = array()) {
863
		$options = (array)$options + array(
864
			'tag' => 'span',
865
			'after' => null,
866
			'model' => $this->defaultModel(),
867
			'separator' => ' | ',
868
			'ellipsis' => '...',
869
			'class' => null
870
		);
871
 
872
		$params = array_merge(array('page' => 1), (array)$this->params($options['model']));
873
		unset($options['model']);
874
 
875
		if ($params['pageCount'] <= 1) {
876
			return '';
877
		}
878
		extract($options);
879
		unset($options['tag'], $options['after'], $options['model'], $options['separator'], $options['ellipsis'], $options['class']);
880
 
881
		$out = '';
882
 
883
		if (is_int($first) && $params['page'] >= $first) {
884
			if ($after === null) {
885
				$after = $ellipsis;
886
			}
887
			for ($i = 1; $i <= $first; $i++) {
888
				$out .= $this->Html->tag($tag, $this->link($i, array('page' => $i), $options), compact('class'));
889
				if ($i != $first) {
890
					$out .= $separator;
891
				}
892
			}
893
			$out .= $after;
894
		} elseif ($params['page'] > 1 && is_string($first)) {
895
			$options += array('rel' => 'first');
896
			$out = $this->Html->tag($tag, $this->link($first, array('page' => 1), $options), compact('class')) . $after;
897
		}
898
		return $out;
899
	}
900
 
901
/**
902
 * Returns a last or set of numbers for the last pages.
903
 *
904
 * `echo $this->Paginator->last('last >');`
905
 *
906
 * Creates a single link for the last page. Will output nothing if you are on the last page.
907
 *
908
 * `echo $this->Paginator->last(3);`
909
 *
910
 * Will create links for the last 3 pages. Once you enter the page range, no output will be created.
911
 *
912
 * ### Options:
913
 *
914
 * - `tag` The tag wrapping tag you want to use, defaults to 'span'
915
 * - `before` Content to insert before the link/tag
916
 * - `model` The model to use defaults to PaginatorHelper::defaultModel()
917
 * - `separator` Content between the generated links, defaults to ' | '
918
 * - `ellipsis` Content for ellipsis, defaults to '...'
919
 *
920
 * @param string|int $last if string use as label for the link, if numeric print page numbers
921
 * @param array $options Array of options
922
 * @return string Numbers string.
923
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/paginator.html#PaginatorHelper::last
924
 */
925
	public function last($last = 'last >>', $options = array()) {
926
		$options = (array)$options + array(
927
			'tag' => 'span',
928
			'before' => null,
929
			'model' => $this->defaultModel(),
930
			'separator' => ' | ',
931
			'ellipsis' => '...',
932
			'class' => null
933
		);
934
 
935
		$params = array_merge(array('page' => 1), (array)$this->params($options['model']));
936
		unset($options['model']);
937
 
938
		if ($params['pageCount'] <= 1) {
939
			return '';
940
		}
941
 
942
		extract($options);
943
		unset($options['tag'], $options['before'], $options['model'], $options['separator'], $options['ellipsis'], $options['class']);
944
 
945
		$out = '';
946
		$lower = $params['pageCount'] - $last + 1;
947
 
948
		if (is_int($last) && $params['page'] <= $lower) {
949
			if ($before === null) {
950
				$before = $ellipsis;
951
			}
952
			for ($i = $lower; $i <= $params['pageCount']; $i++) {
953
				$out .= $this->Html->tag($tag, $this->link($i, array('page' => $i), $options), compact('class'));
954
				if ($i != $params['pageCount']) {
955
					$out .= $separator;
956
				}
957
			}
958
			$out = $before . $out;
959
		} elseif ($params['page'] < $params['pageCount'] && is_string($last)) {
960
			$options += array('rel' => 'last');
961
			$out = $before . $this->Html->tag(
962
				$tag, $this->link($last, array('page' => $params['pageCount']), $options), compact('class')
963
			);
964
		}
965
		return $out;
966
	}
967
 
968
/**
969
 * Returns the meta-links for a paginated result set.
970
 *
971
 * `echo $this->Paginator->meta();`
972
 *
973
 * Echos the links directly, will output nothing if there is neither a previous nor next page.
974
 *
975
 * `$this->Paginator->meta(array('block' => true));`
976
 *
977
 * Will append the output of the meta function to the named block - if true is passed the "meta"
978
 * block is used.
979
 *
980
 * ### Options:
981
 *
982
 * - `model` The model to use defaults to PaginatorHelper::defaultModel()
983
 * - `block` The block name to append the output to, or false/absenst to return as a string
984
 *
985
 * @param array $options Array of options
986
 * @return string|void Meta links
987
 */
988
	public function meta($options = array()) {
989
		$model = isset($options['model']) ? $options['model'] : null;
990
		$params = $this->params($model);
991
		$links = array();
992
		if ($this->hasPrev()) {
993
			$links[] = $this->Html->meta(array(
994
				'rel' => 'prev',
995
				'link' => $this->url(array('page' => $params['page'] - 1), true)
996
			));
997
		}
998
		if ($this->hasNext()) {
999
			$links[] = $this->Html->meta(array(
1000
				'rel' => 'next',
1001
				'link' => $this->url(array('page' => $params['page'] + 1), true)
1002
			));
1003
		}
1004
		$out = implode($links);
1005
		if (empty($options['block'])) {
1006
			return $out;
1007
		}
1008
		if ($options['block'] === true) {
1009
			$options['block'] = __FUNCTION__;
1010
		}
1011
		$this->_View->append($options['block'], $out);
1012
	}
1013
 
1014
}