This is a simple library to generate a numerical array of page numbers based on:
* Total number of pages
* Current page
* Number of pages to show, (*1)
It will generate the page numbers about the current page:, (*2)
// Will return array(19, 20, 21, 22, 23, 24, 25, 26, 27, 28)
Pagination::paginate(76, 23, 10);