Sto lavorando su un modulo personalizzato. Come posso utilizzare l' impaginazione magento predefinita con la mia raccolta personalizzata e anche impostare limiti personalizzati?
Sto lavorando su un modulo personalizzato. Come posso utilizzare l' impaginazione magento predefinita con la mia raccolta personalizzata e anche impostare limiti personalizzati?
Risposte:
ottenere raccolta per quello
public function getNews()
{
//get values of current page
$page=($this->getRequest()->getParam('p'))? $this->getRequest()->getParam('p') : 1;
//get values of current limit
$pageSize=($this->getRequest()->getParam('limit'))? $this->getRequest()->getParam('limit') : 1;
$newsCollection = $this->newscollectionFactory->create();
$newsCollection->addFieldToFilter('is_active',1);
$newsCollection->setOrder('title','ASC');
$newsCollection->setPageSize($pageSize);
$newsCollection->setCurPage($page);
return $newsCollection;
}
Aggiungi impaginazione
protected function _prepareLayout()
{
parent::_prepareLayout();
$this->pageConfig->getTitle()->set(__('News'));
if ($this->getNews()) {
$pager = $this->getLayout()->createBlock(
'Magento\Theme\Block\Html\Pager',
'test.news.pager'
)->setAvailableLimit(array(5=>5,10=>10,15=>15))->setShowPerPage(true)->setCollection(
$this->getNews()
);
$this->setChild('pager', $pager);
$this->getNews()->load();
}
return $this;
}
aggiunta del blocco figlio
public function getPagerHtml()
{
return $this->getChildHtml('pager');
}
nel file phtml
<?php if ($block->getPagerHtml()): ?>
<div class="order-products-toolbar toolbar bottom"><?php echo $block->getPagerHtml(); ?></div>
<?php endif ?>
$this->getRequest()->getParam('p') ?: 1
o, meglio ancora, $this->getRequest()->getParam('p', 1)
.
var/cache
e var/generation
cartella