123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <?php
- /**
- *
- * Cube Framework $Id$ Zuo77Bn8GZF94jwkspr4JiodYgnQzhd4lNW2p2HodY4=
- *
- * @link http://codecu.be/framework
- * @copyright Copyright (c) 2015 CodeCube SRL
- * @license http://codecu.be/framework/license Commercial License
- *
- * @version 1.4
- */
- namespace Cube\View\Helper;
- use Cube\Paginator;
- /**
- * pagination view helper
- *
- * Class Pagination
- *
- * @package Cube\View\Helper
- */
- class Pagination extends AbstractHelper
- {
- /**
- *
- * paginator object
- *
- * @var \Cube\Paginator
- */
- protected $_paginator;
- /**
- *
- * path where to search for navigation view partials
- *
- * @var string
- */
- protected $_path;
- /**
- *
- * get the paginator object
- *
- * @return \Cube\Paginator
- * @throws \InvalidArgumentException
- */
- public function getPaginator()
- {
- if (!($this->_paginator instanceof Paginator)) {
- throw new \InvalidArgumentException(
- sprintf("'%s' must be of type \Cube\Paginator.", $this->_paginator));
- }
- return $this->_paginator;
- }
- /**
- *
- * set the paginator object
- *
- * @param \Cube\Paginator $paginator
- *
- * @return \Cube\View\Helper\Pagination
- * @throws \InvalidArgumentException
- */
- public function setPaginator($paginator)
- {
- if ($paginator instanceof Paginator) {
- $this->_paginator = $paginator;
- }
- else {
- throw new \InvalidArgumentException(
- sprintf("'%s' must be of type \Cube\Paginator.", $this->_paginator));
- }
- return $this;
- }
- /**
- *
- * get paginator partials path
- *
- * @return string
- */
- public function getPath()
- {
- if (empty($this->_path)) {
- $this->_path = $this->getView()->getViewsPath();
- }
- return $this->_path;
- }
- /**
- *
- * set paginator partials path
- *
- * @param string $path
- *
- * @return \Cube\View\Helper\Pagination
- * @throws \InvalidArgumentException
- */
- public function setPath($path)
- {
- if (!is_dir($path)) {
- throw new \InvalidArgumentException(
- sprintf("The navigation files path (%s) does not exist.", $path));
- }
- $this->_path = $path;
- return $this;
- }
- /**
- *
- * renders pagination helper
- *
- * @param \Cube\Paginator $paginator
- * @param mixed $scrollingStyle
- * @param string $partial
- *
- * @return $this|string
- */
- public function pagination(Paginator $paginator = null, $scrollingStyle = null, $partial = null)
- {
- if ($paginator === null) {
- return $this;
- }
- else {
- $this->setPaginator($paginator);
- $this->setPartial($partial);
- }
- if ($scrollingStyle !== null) {
- $this->getPaginator()->setScrollingStyle($scrollingStyle);
- }
- $view = $this->getView();
- $view->paginator = $paginator;
- $view->setVariables(
- get_object_vars($paginator->getPages()));
- return $view->process(
- $this->getPartial(), true);
- }
- }
|