sethjohnson1 / conflist5

Conflist cakePHP5
1 stars 0 forks source link

Add Pagination to search results #26

Closed sethjohnson1 closed 3 weeks ago

sethjohnson1 commented 3 weeks ago

We are already using paginate in controller, just need to build some links at the bottom.

Use the helper: https://book.cakephp.org/5/en/views/helpers/paginator.html#namespace-Cake\View\Helper

sethjohnson1 commented 3 weeks ago

The only trick will be sending the queryString to the Paginator links, something like this: <?= $this->Paginator->next(__('next') . ' >',['url'=>['?'=>['test'=>'ing']]]) ?>

sethjohnson1 commented 3 weeks ago

Pulled to test - it's pretty basic but gets the job done.

nilesjohnson commented 3 weeks ago

merged to main and pulled to production; works fine!