mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 00:36:10 +01:00
25 lines
654 B
PHP
25 lines
654 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WerkraumMedia\Events\Pagination;
|
|
|
|
use TYPO3\CMS\Core\Pagination\PaginationInterface;
|
|
use TYPO3\CMS\Core\Pagination\SlidingWindowPagination;
|
|
use TYPO3\CMS\Extbase\Pagination\QueryResultPaginator;
|
|
use TYPO3\CMS\Extbase\Persistence\QueryResultInterface;
|
|
|
|
final class Factory
|
|
{
|
|
public function create(
|
|
int $currentPage,
|
|
int $itemsPerPage,
|
|
int $maximumLinks,
|
|
QueryResultInterface $items
|
|
): PaginationInterface {
|
|
return new SlidingWindowPagination(
|
|
new QueryResultPaginator($items, $currentPage, $itemsPerPage),
|
|
$maximumLinks
|
|
);
|
|
}
|
|
}
|