forked from zendframework/zendframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Paginator.php
970 lines (839 loc) · 24.7 KB
/
Paginator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Paginator
*/
namespace Zend\Paginator;
use ArrayIterator;
use Countable;
use IteratorAggregate;
use Traversable;
use Zend\Cache\Storage\IteratorInterface as CacheIterator;
use Zend\Cache\Storage\StorageInterface as CacheStorage;
use Zend\Db\ResultSet\AbstractResultSet;
use Zend\Filter\FilterInterface;
use Zend\Json\Json;
use Zend\Paginator\Adapter\AdapterInterface;
use Zend\Paginator\ScrollingStyle\ScrollingStyleInterface;
use Zend\Stdlib\ArrayUtils;
use Zend\View;
/**
* @category Zend
* @package Zend_Paginator
*/
class Paginator implements Countable, IteratorAggregate
{
/**
* The cache tag prefix used to namespace Paginator results in the cache
*
*/
const CACHE_TAG_PREFIX = 'Zend_Paginator_';
/**
* Adapter plugin manager
*
* @var AdapterPluginManager
*/
protected static $adapters = null;
/**
* Configuration file
*
* @var array|null
*/
protected static $config = null;
/**
* Default scrolling style
*
* @var string
*/
protected static $defaultScrollingStyle = 'Sliding';
/**
* Default item count per page
*
* @var int
*/
protected static $defaultItemCountPerPage = 10;
/**
* Scrolling style plugin manager
*
* @var ScrollingStylePluginManager
*/
protected static $scrollingStyles = null;
/**
* Cache object
*
* @var CacheStorage
*/
protected static $cache;
/**
* Enable or disable the cache by Zend\Paginator\Paginator instance
*
* @var bool
*/
protected $cacheEnabled = true;
/**
* Adapter
*
* @var AdapterInterface
*/
protected $adapter = null;
/**
* Number of items in the current page
*
* @var integer
*/
protected $currentItemCount = null;
/**
* Current page items
*
* @var Traversable
*/
protected $currentItems = null;
/**
* Current page number (starting from 1)
*
* @var integer
*/
protected $currentPageNumber = 1;
/**
* Result filter
*
* @var FilterInterface
*/
protected $filter = null;
/**
* Number of items per page
*
* @var integer
*/
protected $itemCountPerPage = null;
/**
* Number of pages
*
* @var integer
*/
protected $pageCount = null;
/**
* Number of local pages (i.e., the number of discrete page numbers
* that will be displayed, including the current page number)
*
* @var integer
*/
protected $pageRange = 10;
/**
* Pages
*
* @var array
*/
protected $pages = null;
/**
* View instance used for self rendering
*
* @var \Zend\View\Renderer\RendererInterface
*/
protected $view = null;
/**
* Set a global config
*
* @param array|\Traversable $config
* @throws Exception\InvalidArgumentException
*/
public static function setGlobalConfig($config)
{
if ($config instanceof Traversable) {
$config = ArrayUtils::iteratorToArray($config);
}
if (!is_array($config)) {
throw new Exception\InvalidArgumentException(__METHOD__ . ' expects an array or Traversable');
}
self::$config = $config;
if (isset($config['scrolling_style_plugins'])
&& null !== ($adapters = $config['scrolling_style_plugins'])
) {
self::setScrollingStylePluginManager($adapters);
}
$scrollingStyle = isset($config['scrolling_style']) ? $config['scrolling_style'] : null;
if ($scrollingStyle != null) {
self::setDefaultScrollingStyle($scrollingStyle);
}
}
/**
* Returns the default scrolling style.
*
* @return string
*/
public static function getDefaultScrollingStyle()
{
return self::$defaultScrollingStyle;
}
/**
* Get the default item count per page
*
* @return int
*/
public static function getDefaultItemCountPerPage()
{
return self::$defaultItemCountPerPage;
}
/**
* Set the default item count per page
*
* @param int $count
*/
public static function setDefaultItemCountPerPage($count)
{
self::$defaultItemCountPerPage = (int) $count;
}
/**
* Sets a cache object
*
* @param CacheStorage $cache
*/
public static function setCache(CacheStorage $cache)
{
self::$cache = $cache;
}
/**
* Sets the default scrolling style.
*
* @param string $scrollingStyle
*/
public static function setDefaultScrollingStyle($scrollingStyle = 'Sliding')
{
self::$defaultScrollingStyle = $scrollingStyle;
}
public static function setScrollingStylePluginManager($scrollingAdapters)
{
if (is_string($scrollingAdapters)) {
if (!class_exists($scrollingAdapters)) {
throw new Exception\InvalidArgumentException(sprintf(
'Unable to locate scrolling style plugin manager with class "%s"; class not found',
$scrollingAdapters
));
}
$scrollingAdapters = new $scrollingAdapters();
}
if (!$scrollingAdapters instanceof ScrollingStylePluginManager) {
throw new Exception\InvalidArgumentException(sprintf(
'Pagination scrolling-style manager must extend ScrollingStylePluginManager; received "%s"',
(is_object($scrollingAdapters) ? get_class($scrollingAdapters) : gettype($scrollingAdapters))
));
}
self::$scrollingStyles = $scrollingAdapters;
}
/**
* Returns the scrolling style manager. If it doesn't exist it's
* created.
*
* @return ScrollingStylePluginManager
*/
public static function getScrollingStylePluginManager()
{
if (self::$scrollingStyles === null) {
self::$scrollingStyles = new ScrollingStylePluginManager();
}
return self::$scrollingStyles;
}
/**
* Constructor.
*
* @param AdapterInterface|AdapterAggregateInterface $adapter
* @throws Exception\InvalidArgumentException
*/
public function __construct($adapter)
{
if ($adapter instanceof AdapterInterface) {
$this->adapter = $adapter;
} elseif ($adapter instanceof AdapterAggregateInterface) {
$this->adapter = $adapter->getPaginatorAdapter();
} else {
throw new Exception\InvalidArgumentException(
'Zend_Paginator only accepts instances of the type ' .
'Zend\Paginator\Adapter\AdapterInterface or Zend\Paginator\AdapterAggregateInterface.'
);
}
$config = self::$config;
if (!empty($config)) {
$setupMethods = array('ItemCountPerPage', 'PageRange');
foreach ($setupMethods as $setupMethod) {
$key = strtolower($setupMethod);
$value = isset($config[$key]) ? $config[$key] : null;
if ($value != null) {
$setupMethod = 'set' . $setupMethod;
$this->$setupMethod($value);
}
}
}
}
/**
* Serializes the object as a string. Proxies to {@link render()}.
*
* @return string
*/
public function __toString()
{
try {
$return = $this->render();
return $return;
} catch (\Exception $e) {
trigger_error($e->getMessage(), E_USER_WARNING);
}
return '';
}
/**
* Enables/Disables the cache for this instance
*
* @param bool $enable
* @return Paginator
*/
public function setCacheEnabled($enable)
{
$this->cacheEnabled = (bool) $enable;
return $this;
}
/**
* Returns the number of pages.
*
* @return integer
*/
public function count()
{
if (!$this->pageCount) {
$this->pageCount = $this->_calculatePageCount();
}
return $this->pageCount;
}
/**
* Returns the total number of items available.
*
* @return integer
*/
public function getTotalItemCount()
{
return count($this->getAdapter());
}
/**
* Clear the page item cache.
*
* @param int $pageNumber
* @return Paginator
*/
public function clearPageItemCache($pageNumber = null)
{
if (!$this->cacheEnabled()) {
return $this;
}
if (null === $pageNumber) {
$prefixLength = strlen(self::CACHE_TAG_PREFIX);
$cacheIterator = self::$cache->getIterator();
$cacheIterator->setMode(CacheIterator::CURRENT_AS_KEY);
foreach ($cacheIterator as $key) {
$tags = self::$cache->getTags($key);
if ($tags && in_array($this->_getCacheInternalId(), $tags)) {
if (substr($key, 0, $prefixLength) == self::CACHE_TAG_PREFIX) {
self::$cache->removeItem($this->_getCacheId((int)substr($key, $prefixLength)));
}
}
}
} else {
$cleanId = $this->_getCacheId($pageNumber);
self::$cache->removeItem($cleanId);
}
return $this;
}
/**
* Returns the absolute item number for the specified item.
*
* @param integer $relativeItemNumber Relative item number
* @param integer $pageNumber Page number
* @return integer
*/
public function getAbsoluteItemNumber($relativeItemNumber, $pageNumber = null)
{
$relativeItemNumber = $this->normalizeItemNumber($relativeItemNumber);
if ($pageNumber == null) {
$pageNumber = $this->getCurrentPageNumber();
}
$pageNumber = $this->normalizePageNumber($pageNumber);
return (($pageNumber - 1) * $this->getItemCountPerPage()) + $relativeItemNumber;
}
/**
* Returns the adapter.
*
* @return AdapterInterface
*/
public function getAdapter()
{
return $this->adapter;
}
/**
* Returns the number of items for the current page.
*
* @return integer
*/
public function getCurrentItemCount()
{
if ($this->currentItemCount === null) {
$this->currentItemCount = $this->getItemCount($this->getCurrentItems());
}
return $this->currentItemCount;
}
/**
* Returns the items for the current page.
*
* @return Traversable
*/
public function getCurrentItems()
{
if ($this->currentItems === null) {
$this->currentItems = $this->getItemsByPage($this->getCurrentPageNumber());
}
return $this->currentItems;
}
/**
* Returns the current page number.
*
* @return integer
*/
public function getCurrentPageNumber()
{
return $this->normalizePageNumber($this->currentPageNumber);
}
/**
* Sets the current page number.
*
* @param integer $pageNumber Page number
* @return Paginator $this
*/
public function setCurrentPageNumber($pageNumber)
{
$this->currentPageNumber = (integer) $pageNumber;
$this->currentItems = null;
$this->currentItemCount = null;
return $this;
}
/**
* Get the filter
*
* @return FilterInterface
*/
public function getFilter()
{
return $this->filter;
}
/**
* Set a filter chain
*
* @param FilterInterface $filter
* @return Paginator
*/
public function setFilter(FilterInterface $filter)
{
$this->filter = $filter;
return $this;
}
/**
* Returns an item from a page. The current page is used if there's no
* page specified.
*
* @param integer $itemNumber Item number (1 to itemCountPerPage)
* @param integer $pageNumber
* @throws Exception\InvalidArgumentException
* @return mixed
*/
public function getItem($itemNumber, $pageNumber = null)
{
if ($pageNumber == null) {
$pageNumber = $this->getCurrentPageNumber();
} elseif ($pageNumber < 0) {
$pageNumber = ($this->count() + 1) + $pageNumber;
}
$page = $this->getItemsByPage($pageNumber);
$itemCount = $this->getItemCount($page);
if ($itemCount == 0) {
throw new Exception\InvalidArgumentException('Page ' . $pageNumber . ' does not exist');
}
if ($itemNumber < 0) {
$itemNumber = ($itemCount + 1) + $itemNumber;
}
$itemNumber = $this->normalizeItemNumber($itemNumber);
if ($itemNumber > $itemCount) {
throw new Exception\InvalidArgumentException('Page ' . $pageNumber . ' does not'
. ' contain item number ' . $itemNumber);
}
return $page[$itemNumber - 1];
}
/**
* Returns the number of items per page.
*
* @return integer
*/
public function getItemCountPerPage()
{
if (empty($this->itemCountPerPage)) {
$this->itemCountPerPage = self::getDefaultItemCountPerPage();
}
return $this->itemCountPerPage;
}
/**
* Sets the number of items per page.
*
* @param integer $itemCountPerPage
* @return Paginator $this
*/
public function setItemCountPerPage($itemCountPerPage = -1)
{
$this->itemCountPerPage = (integer) $itemCountPerPage;
if ($this->itemCountPerPage < 1) {
$this->itemCountPerPage = $this->getTotalItemCount();
}
$this->pageCount = $this->_calculatePageCount();
$this->currentItems = null;
$this->currentItemCount = null;
return $this;
}
/**
* Returns the number of items in a collection.
*
* @param mixed $items Items
* @return integer
*/
public function getItemCount($items)
{
$itemCount = 0;
if (is_array($items) || $items instanceof Countable) {
$itemCount = count($items);
} elseif ($items instanceof Traversable) { // $items is something like LimitIterator
$itemCount = iterator_count($items);
}
return $itemCount;
}
/**
* Returns the items for a given page.
*
* @param integer $pageNumber
* @return mixed
*/
public function getItemsByPage($pageNumber)
{
$pageNumber = $this->normalizePageNumber($pageNumber);
if ($this->cacheEnabled()) {
$data = self::$cache->getItem($this->_getCacheId($pageNumber));
if ($data) {
return $data;
}
}
$offset = ($pageNumber - 1) * $this->getItemCountPerPage();
$items = $this->adapter->getItems($offset, $this->getItemCountPerPage());
$filter = $this->getFilter();
if ($filter !== null) {
$items = $filter->filter($items);
}
if (!$items instanceof Traversable) {
$items = new ArrayIterator($items);
}
if ($this->cacheEnabled()) {
$cacheId = $this->_getCacheId($pageNumber);
self::$cache->setItem($cacheId, $items);
self::$cache->setTags($cacheId, array($this->_getCacheInternalId()));
}
return $items;
}
/**
* Returns a foreach-compatible iterator.
*
* @throws Exception\RuntimeException
* @return Traversable
*/
public function getIterator()
{
try {
return $this->getCurrentItems();
} catch (\Exception $e) {
throw new Exception\RuntimeException('Error producing an iterator', null, $e);
}
}
/**
* Returns the page range (see property declaration above).
*
* @return integer
*/
public function getPageRange()
{
return $this->pageRange;
}
/**
* Sets the page range (see property declaration above).
*
* @param integer $pageRange
* @return Paginator $this
*/
public function setPageRange($pageRange)
{
$this->pageRange = (integer) $pageRange;
return $this;
}
/**
* Returns the page collection.
*
* @param string $scrollingStyle Scrolling style
* @return array
*/
public function getPages($scrollingStyle = null)
{
if ($this->pages === null) {
$this->pages = $this->_createPages($scrollingStyle);
}
return $this->pages;
}
/**
* Returns a subset of pages within a given range.
*
* @param integer $lowerBound Lower bound of the range
* @param integer $upperBound Upper bound of the range
* @return array
*/
public function getPagesInRange($lowerBound, $upperBound)
{
$lowerBound = $this->normalizePageNumber($lowerBound);
$upperBound = $this->normalizePageNumber($upperBound);
$pages = array();
for ($pageNumber = $lowerBound; $pageNumber <= $upperBound; $pageNumber++) {
$pages[$pageNumber] = $pageNumber;
}
return $pages;
}
/**
* Returns the page item cache.
*
* @return array
*/
public function getPageItemCache()
{
$data = array();
if ($this->cacheEnabled()) {
$prefixLength = strlen(self::CACHE_TAG_PREFIX);
$cacheIterator = self::$cache->getIterator();
$cacheIterator->setMode(CacheIterator::CURRENT_AS_VALUE);
foreach ($cacheIterator as $key => $value) {
$tags = self::$cache->getTags($key);
if ($tags && in_array($this->_getCacheInternalId(), $tags)) {
if (substr($key, 0, $prefixLength) == self::CACHE_TAG_PREFIX) {
$data[(int) substr($key, $prefixLength)] = $value;
}
}
}
}
return $data;
}
/**
* Retrieves the view instance.
*
* If none registered, instantiates a PhpRenderer instance.
*
* @return \Zend\View\Renderer\RendererInterface|null
*/
public function getView()
{
if ($this->view === null) {
$this->setView(new View\Renderer\PhpRenderer());
}
return $this->view;
}
/**
* Sets the view object.
*
* @param \Zend\View\Renderer\RendererInterface $view
* @return Paginator
*/
public function setView(View\Renderer\RendererInterface $view = null)
{
$this->view = $view;
return $this;
}
/**
* Brings the item number in range of the page.
*
* @param integer $itemNumber
* @return integer
*/
public function normalizeItemNumber($itemNumber)
{
$itemNumber = (integer) $itemNumber;
if ($itemNumber < 1) {
$itemNumber = 1;
}
if ($itemNumber > $this->getItemCountPerPage()) {
$itemNumber = $this->getItemCountPerPage();
}
return $itemNumber;
}
/**
* Brings the page number in range of the paginator.
*
* @param integer $pageNumber
* @return integer
*/
public function normalizePageNumber($pageNumber)
{
$pageNumber = (integer) $pageNumber;
if ($pageNumber < 1) {
$pageNumber = 1;
}
$pageCount = $this->count();
if ($pageCount > 0 && $pageNumber > $pageCount) {
$pageNumber = $pageCount;
}
return $pageNumber;
}
/**
* Renders the paginator.
*
* @param \Zend\View\Renderer\RendererInterface $view
* @return string
*/
public function render(View\Renderer\RendererInterface $view = null)
{
if (null !== $view) {
$this->setView($view);
}
$view = $this->getView();
return $view->paginationControl($this);
}
/**
* Returns the items of the current page as JSON.
*
* @return string
*/
public function toJson()
{
$currentItems = $this->getCurrentItems();
if ($currentItems instanceof AbstractResultSet) {
return Json::encode($currentItems->toArray());
}
return Json::encode($currentItems);
}
/**
* Tells if there is an active cache object
* and if the cache has not been disabled
*
* @return bool
*/
protected function cacheEnabled()
{
return ((self::$cache !== null) && $this->cacheEnabled);
}
/**
* Makes an Id for the cache
* Depends on the adapter object and the page number
*
* Used to store item in cache from that Paginator instance
* and that current page
*
* @param int $page
* @return string
*/
protected function _getCacheId($page = null)
{
if ($page === null) {
$page = $this->getCurrentPageNumber();
}
return self::CACHE_TAG_PREFIX . $page . '_' . $this->_getCacheInternalId();
}
/**
* Get the internal cache id
* Depends on the adapter and the item count per page
*
* Used to tag that unique Paginator instance in cache
*
* @return string
*/
protected function _getCacheInternalId()
{
return md5(serialize(array(
spl_object_hash($this->getAdapter()),
$this->getItemCountPerPage()
)));
}
/**
* Calculates the page count.
*
* @return integer
*/
protected function _calculatePageCount()
{
return (integer) ceil($this->getAdapter()->count() / $this->getItemCountPerPage());
}
/**
* Creates the page collection.
*
* @param string $scrollingStyle Scrolling style
* @return \stdClass
*/
protected function _createPages($scrollingStyle = null)
{
$pageCount = $this->count();
$currentPageNumber = $this->getCurrentPageNumber();
$pages = new \stdClass();
$pages->pageCount = $pageCount;
$pages->itemCountPerPage = $this->getItemCountPerPage();
$pages->first = 1;
$pages->current = $currentPageNumber;
$pages->last = $pageCount;
// Previous and next
if ($currentPageNumber - 1 > 0) {
$pages->previous = $currentPageNumber - 1;
}
if ($currentPageNumber + 1 <= $pageCount) {
$pages->next = $currentPageNumber + 1;
}
// Pages in range
$scrollingStyle = $this->_loadScrollingStyle($scrollingStyle);
$pages->pagesInRange = $scrollingStyle->getPages($this);
$pages->firstPageInRange = min($pages->pagesInRange);
$pages->lastPageInRange = max($pages->pagesInRange);
// Item numbers
if ($this->getCurrentItems() !== null) {
$pages->currentItemCount = $this->getCurrentItemCount();
$pages->itemCountPerPage = $this->getItemCountPerPage();
$pages->totalItemCount = $this->getTotalItemCount();
$pages->firstItemNumber = (($currentPageNumber - 1) * $this->getItemCountPerPage()) + 1;
$pages->lastItemNumber = $pages->firstItemNumber + $pages->currentItemCount - 1;
}
return $pages;
}
/**
* Loads a scrolling style.
*
* @param string $scrollingStyle
* @return ScrollingStyleInterface
* @throws Exception\InvalidArgumentException
*/
protected function _loadScrollingStyle($scrollingStyle = null)
{
if ($scrollingStyle === null) {
$scrollingStyle = self::$defaultScrollingStyle;
}
switch (strtolower(gettype($scrollingStyle))) {
case 'object':
if (!$scrollingStyle instanceof ScrollingStyleInterface) {
throw new Exception\InvalidArgumentException(
'Scrolling style must implement Zend\Paginator\ScrollingStyle\ScrollingStyleInterface'
);
}
return $scrollingStyle;
case 'string':
return self::getScrollingStylePluginManager()->get($scrollingStyle);
case 'null':
// Fall through to default case
default:
throw new Exception\InvalidArgumentException(
'Scrolling style must be a class ' .
'name or object implementing Zend\Paginator\ScrollingStyle\ScrollingStyleInterface'
);
}
}
}