Olá amigos, hoje vou mostra basicamente como paginar dados usando o Zend Framework e o Doctrine, inicialmente parece algo complexo, mas vcs vão perceber que é simples.
Se vc ainda não fez uma paginação com o zend framework leia esse meu artigo sobre paginação com o ZF Paginando com Zend Framework e depois corra aqui, ou se preferir fique por aqui mesmo.
Vamos lá, vou mostrar a paginação de forma bem simples pois o grande problema de fazer um artigo sobre paginação do Zend Framework com Doctrine é que isso varia muito a arquitetura que cada um esta usando, mas nesse caso isso não vai atrapalhar pois vc vai adaptar de acordo com a sua arquitetura.
Mãos a obra
No controller....
Se vc ainda não fez uma paginação com o zend framework leia esse meu artigo sobre paginação com o ZF Paginando com Zend Framework e depois corra aqui, ou se preferir fique por aqui mesmo.
Vamos lá, vou mostrar a paginação de forma bem simples pois o grande problema de fazer um artigo sobre paginação do Zend Framework com Doctrine é que isso varia muito a arquitetura que cada um esta usando, mas nesse caso isso não vai atrapalhar pois vc vai adaptar de acordo com a sua arquitetura.
Mãos a obra
No controller....
- public function exemploAction() {
- $request = $this->getRequest();
- if ($request->getPost()) {
- $params = $request->getPost();
- $pagina = (int) $params['pag'];
- $front = \Zend_Controller_Front::getInstance();
- $em = $front->getParam('bootstrap')->getResource('entityManager');
- $dql = $em->createQuery("select a from Entidade_Pessoa a");
- $dados = new \DoctrineExtensions\Paginate\PaginationAdapter($dql);
- $paginator = new Zend_Paginator($dados);
- // Seta a quantidade de registros por página
- $paginator->setItemCountPerPage(4);
- // numero de paginas que serão exibidas
- $paginator->setPageRange(15);
- // Seta a página atual
- $paginator->setCurrentPageNumber($pagina);
- }
- $this->view->paginator = $paginator;
- }
Lindo não é?
Veja a classe:
- /**
- * DoctrineExtensions Paginate
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE. This license can also be viewed
- * at http://hobodave.com/license.txt
- *
- * @category DoctrineExtensions
- * @package DoctrineExtensions\Paginate
- * @author David Abdemoulaie <dave@hobodave.com>
- * @copyright Copyright (c) 2010 David Abdemoulaie (http://hobodave.com/)
- * @license http://hobodave.com/license.txt New BSD License
- */
- namespace DoctrineExtensions\Paginate;
- use Doctrine\ORM\Query;
- /**
- * Implements the Zend_Paginator_Adapter_Interface for use with Zend_Paginator
- *
- * Allows pagination of Doctrine\ORM\Query objects and DQL strings
- *
- * @category DoctrineExtensions
- * @package DoctrineExtensions\Paginate
- * @author David Abdemoulaie <dave@hobodave.com>
- * @copyright Copyright (c) 2010 David Abdemoulaie (http://hobodave.com/)
- * @license http://hobodave.com/license.txt New BSD License
- */
- class PaginationAdapter implements \Zend_Paginator_Adapter_Interface {
- /**
- * The SELECT query to paginate
- *
- * @var Query
- */
- protected $query = null;
- /**
- * Total item count
- *
- * @var integer
- */
- protected $rowCount = null;
- /**
- * Use Array Result
- *
- * @var boolean
- */
- protected $arrayResult = false;
- /**
- * Constructor
- *
- * @param Query $query
- * @param string $ns Namespace to prevent named parameter conflicts
- */
- public function __construct(Query $query) {
- $this->query = $query;
- }
- /**
- * Set use array result flag
- *
- * @param boolean $flag True to use array result
- */
- public function useArrayResult($flag = true) {
- $this->arrayResult = $flag;
- }
- /**
- * Sets the total row count for this paginator
- *
- * Can be either an integer, or a Doctrine\ORM\Query object
- * which returns the count
- *
- * @param Query|integer $rowCount
- * @return void
- */
- public function setRowCount($rowCount) {
- if ($rowCount instanceof Query) {
- $this->rowCount = $rowCount->getSingleScalarResult();
- } else if (is_integer($rowCount)) {
- $this->rowCount = $rowCount;
- } else {
- throw new \InvalidArgumentException("Invalid row count");
- }
- }
- /**
- * Sets the namespace to be used for named parameters
- *
- * Parameters will be in the format 'namespace_1' ... 'namespace_N'
- *
- * @param string $ns
- * @return void
- * @author David Abdemoulaie
- */
- public function setNamespace($ns) {
- $this->namespace = $ns;
- }
- /**
- * Gets the current page of items
- *
- * @param string $offset
- * @param string $itemCountPerPage
- * @return void
- * @author David Abdemoulaie
- */
- public function getItems($offset, $itemCountPerPage) {
- $this->query->setFirstResult($offset);
- $this->query->setMaxResults($itemCountPerPage);
- $entities = $this->query->getResult();
- return $entities;
- }
- /**
- * @param Query $query
- * @return int
- */
- public function count() {
- if (is_null($this->rowCount)) {
- $this->setRowCount(
- $this->createCountQuery()
- );
- }
- return $this->rowCount;
- }
- /**
- * @return Query
- */
- protected function createCountQuery() {
- return Paginate::createCountQuery($this->query);
- }
- /**
- * @return Query
- */
- protected function createLimitSubquery($offset, $itemCountPerPage) {
- return Paginate::createLimitSubQuery($this->query, $offset, $itemCountPerPage);
- }
- /**
- * @return Query
- */
- protected function createWhereInQuery($ids) {
- return Paginate::createWhereInQuery($this->query, $ids, $this->namespace);
- }
- }
Dúvidas? Me avisem pois fiz esse post meio correndo... rsrs
vALEUU PV AJUDOU MUITO CARA!
ResponderExcluirCaraca nunca q eu ia saber q era assim q montava o adapter, valeu!
ResponderExcluirBoa noite, não consegui usar isso, uso o doctrine 2.2 e não funcionou, como faço para paginar usando o doctrine 2.2? ja olhei na documentação mas e dificil quando nao se tem muita experiencia....grato
ResponderExcluir