Download the PHP package wake/pager without Composer

On this page you can find all versions of the php package wake/pager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package pager

Pager

A lightweight PHP paginator.

Installation

Add in your composer.json with following require entry:

or using composer:

then run composer install or composer update.

Usage: Pager

Use Pager without any ORM.

$pager->show ($show)

Set amount of items per page, default to 15.

$pager->total ($total)

Set total amount of items.

$pager->size ($size)

Set amount of page list per page, default to 10.

$pager->page ($page)

Set current page, default to 1.

$pager->dynamic (), $pager->fixed ()

List pages of page group dynamically or fixed, default is dynamic.

$pager->url ($pattern)

Set url pattern or handler function, default is pattern (:num).

$pager->paging ()

Calculate and build page items, must be called after all options are set.

Usage: Pages

Container of page items.

$pages->top

First page of all pages, generally is 1.

$pages->end

Last page of all pages.

$pages->first

First page of page group.

$pages->last

Last page of page group.

$pages->total

Total amount of pages.

$pages->current, $pages->page

Current page.

$pages->next

Next page.

$pages->prev

Previous page.

$pages->next*N

Next N page.

$pages->prev*N

Previous N page.

Usage: Page item

Page item.

$item, $item->num

Number of the page, $item could be use as string directly.

$item->url ()

Url of the page.

Feedback

Please feel free to open an issue and let me know if there is any thoughts or questions :smiley:

License

Released under the MIT license


All versions of pager with dependencies

PHP Build Version
Package Version
Requires php Version >=5.2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wake/pager contains the following files

Loading the files please wait ....