Skip to content

premekkoch/PkPaginator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PremekKoch\PkPaginator

Extended Nette framework paginator, which allows different items count on first page.

Instalation

composer require premekkoch/pkpaginator

How to use

Use PkPaginator instead of Nette\Utils\Paginator by the same way. For different items count on first page, set this count by calling setItemsOnFirstPage();. If you don't do this, PkPaginator works with original behavior of Nette\Utils\Paginator with same items count on each page.

	$paginator = new PremekKoch\PkPaginator();
	$paginator->setItemCount(356); // total number of items
	$paginator->setItemsOnFirstPage(5); // items count on first page
	$paginator->setItemsPerPage(30); // items per 2nd and next pages
	$paginator->setPage(1); // actual page number

About

Nette Framework extended paginator with different items count on first page

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages