I found much information about pagination in Kohana 3.2 but most of it is scattered across forum comments and blog posts with no single complete source to refer to.
(note: I intended to self answer this question)
I found much information about pagination in Kohana 3.2 but most of it is scattered across forum comments and blog posts with no single complete source to refer to.
(note: I intended to self answer this question)
Pagination wasn't originally working/supported in Kohana 3.2. Luckily, somebody has updated the module and you can get the code at https://github.com/kloopko/kohana-pagination
This is what worked for me:
Add the module in bootstrap.php:
Copy the configuration file from modules/pagination/config/pagination.php to application/config/pagination.php.
Add the following actions to your controller:
Create yourview/page as follows:
Modify application/config/pagination.php according to your needs. I had to change the
'view'
parameter to'pagination/floating'
which displays ellipses (...) when the list of pages is too large, unlike the default'pagination/basic'
which lists all pages regardless of length.