PHP code example of ekrouzek / pagination-filters-bundle

1. Go to this page and download the library: Download ekrouzek/pagination-filters-bundle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ekrouzek / pagination-filters-bundle example snippets



// config/bundles.php

return [
    // ...
    Ekrouzek\PaginationFiltersBundle\PaginationFiltersBundle::class => ['all' => true],
    // ...
];

#[QueryParam(name: "page", erPage", t: "")]
#[QueryParam(name: "sort", default: "")]

public function getCourses(ParamFetcher $paramFetcher, ...): View

$paginationHandler = new PaginationHandler($paramFetcher);
$paginationHandler->createQueryFilter()
     ->addNumberField("id", "c.id")
     ->addTextField("semester", "c.semester")
     ->addTextField("subject", "c.subject")
     ->addDatetimeField("created", "c.created");

public function getAllCoursesQuery(): QueryBuilder
{
     return $this->getEntityManager()
         ->createQueryBuilder()
         ->select('c')
         ->from(Course::class, 'c');
}

$query = $this->courseService->getAllCoursesQuery();

try {
     $courses = $paginationHandler->getPaginatedData($query);
} catch (PaginationAndFilterException $exception) {
     return $this->sendBadRequest($exception->getMessage());
}

// Create response.
$result = $this->courseService->formatMany($courses);
return $paginationHandler->sendPaginatedResponse($result);