Download the PHP package ekrouzek/pagination-filters-bundle without Composer

On this page you can find all versions of the php package ekrouzek/pagination-filters-bundle. 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 pagination-filters-bundle

Pagination and filters bundle

Symfony bundle that allows you to set paging, filtering and sorting for selected API endpoints.

  1. Installation
  2. Implementation
  3. Usage

Installation

1. Download the bundle

To download the most up-to-date stable version of this bundle, open a command console, navigate to your project directory, and execute the following command:

2. Enable the bundle

If Flex is being used, the bundle will be automatically enabled. However, if Flex is not being used, manual enabling of the bundle is required by adding the following line to the config/bundles.php file in your project.

Implementation

Usage is shown on an example GET endpoint to get all the courses.

1. Header and ParamFetcher

First, it is necessary to specify the query parameters that we expect for the method:

Then you also need to add ParamFetcher to the function parameters:

2. Definition of filters

Subsequently, it is enough to add the definition of which data can be filtered and sorted according to which at the same time to the given method: addNumberField(), addTextField(), addDatetimeField(), addBooleanField() methods are available. The first parameter of these functions is the key that will be presented to the outside - that is, which can be entered into the filter from the outside. The second parameter specifies to which attribute it is mapped in the specified DQL query (more below).

So for example:

3. Getting the QueryBuilder and the result

Instead of the already obtained result, it is necessary to pass the DQL QueryBuilder for evaluation. It is therefore necessary to create your own method in the repository for obtaining the query. The idea is the same as if you were to create your own method in the repository, however you don't call ->getQuery()->getResult() at the end, but you pass directly the QueryBuilder.

So for example:

Finally, you only create a method in the corresponding Service, which transfers the result of this method in the repository to the controller. To get the final result of the query, just call ->getPaginatedData($query) in the controller:

4. Sending the result

So the result just needs to be serialized and sent. To send the result with the _pagination header, just call the defined sendPaginatedResponse() method, which wraps the serialized data with a header with pagination information:

Usage

To use paging, filtering and paging, just add the corresponding GET parameters to the HTTP request.

Paging

Filtering

Shifting


All versions of pagination-filters-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0.1
nette/utils Version ^3.2
friendsofsymfony/rest-bundle Version ^3.3
doctrine/orm Version ^2.11
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 ekrouzek/pagination-filters-bundle contains the following files

Loading the files please wait ....