Download the PHP package volnix/paginate without Composer

On this page you can find all versions of the php package volnix/paginate. 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 paginate

Paginate

Build Status Coverage Status Total Downloads Latest Stable Version

Paginate is a dead-simple pagination data-model. It holds metadata about your pagination system and also the current state of pagination at any given time. It is useful for use in models for server-side pagination, views for client-side pagination building, and everywhere in between.

Basic Usage

The pagination library can be used with zero configuration if desired. There are 3 config settings for Paginate and are simply metadata about your pagination system:

Zero-configuration pagination:

Note: The paginate method is what actually sets the current pagination state. This must be called with the result count (and optionally current page) to build up useful pagination information.

The use-case above would set the following parameters about the current state of your pagination (these correspond to class variables in the Pager):

Configuring Pagination

You may also set the style of pagination you want by passing in metadata through the constructor or calling the setConfig method:

Note: Neither of the above examples are calling the paginate method. The pager is not of any value until paginate is called, for that method actually sets your current state.

Pagination Information

The class variables exposed by the Pager are the core of the information provided by this library and are what are to be used by any extensions:

Method Chaining

The paginate and setConfig methods both return the Pager object, so method-chaining is possible:

API Pagination

Paginate can return an array or JSON containing pertinent information for API pagination. These fields are returned in both formats:

Note: prev and next will both be equal to 1 if there is no pagination

Extending Paginate

This library is meant to be extended. Once you have your basic pagination information, it is possible to build up server-side, client-side, etc. pagination in whatever ORM or javascript library you use in your project.


All versions of paginate with dependencies

PHP Build Version
Package Version
Requires php Version >= 5.4
satooshi/php-coveralls Version 0.7.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 volnix/paginate contains the following files

Loading the files please wait ....