Tomé uno de los que usaba en ZF1
Código PHP:
Ver original<?php if ($this->pageCount): ?>
<div class="paginationControl">
<?php echo $this->firstItemNumber; ?> - <?php echo $this->lastItemNumber; ?>
of <?php echo $this->totalItemCount; ?>
<!-- First page link -->
<?php if (isset($this->previous)): ?> <a href="
<?php echo $this->url(array('page' => $this->first)); ?>">
First
</a> |
<?php else: ?>
<span class="disabled">First</span> |
<?php endif; ?>
<!-- Previous page link -->
<?php if (isset($this->previous)): ?> <a href="
<?php echo $this->url(array('page' => $this->previous)); ?>">
< Previous
</a> |
<?php else: ?>
<span class="disabled">< Previous</span> |
<?php endif; ?>
<!-- Next page link -->
<a href="
<?php echo $this->url(array('page' => $this->next)); ?>">
Next >
</a> |
<?php else: ?>
<span class="disabled">Next ></span> |
<?php endif; ?>
<!-- Last page link -->
<a href="
<?php echo $this->url(array('page' => $this->last)); ?>">
Last
</a>
<?php else: ?>
<span class="disabled">Last</span>
<?php endif; ?>
</div>
<?php endif; ?>
El error anterior se solucionó con lo que me dió
masterpuppet
Código PHP:
Ver original$paginator->setView($this->locator->get('view'))
con eso ya encuentra el items.phtml
Ahora me dice que:
Cita: Warning: Route with name "" not found in \library\Zend\Paginator\Paginator.php on line 424
A que ruta se refiere y como se setea? algo más del di?
También me falta decirle en donde tiene que empezar, pero de ZF1 a ZF2 hay mucha diferencia. En ZF1 le decia:
Código PHP:
Ver originalif ($this->_hasParam('page')) {
$paginator->setCurrentPageNumber($this->_getParam('page'));
}
En el ZF2 no sé como sería.
Gracias
GatorV