PHPackages                             t3brightside/paginatedprocessors - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. t3brightside/paginatedprocessors

ActiveTypo3-cms-extension[Utility &amp; Helpers](/categories/utility)

t3brightside/paginatedprocessors
================================

Paginated dataprocessors for TYPO3

1.7.5(2mo ago)464.5k↓47.5%6[1 issues](https://github.com/t3brightside/paginatedprocessors/issues)6GPL-2.0-or-laterPHP

Since Nov 8Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/t3brightside/paginatedprocessors)[ Packagist](https://packagist.org/packages/t3brightside/paginatedprocessors)[ Docs](https://t3brightside.com)[ GitHub Sponsors](https://github.com/t3brightside)[ RSS](/packages/t3brightside-paginatedprocessors/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (10)Dependencies (4)Versions (27)Used By (6)

Paginatedprocessors
===================

[](#paginatedprocessors)

[![License](https://camo.githubusercontent.com/2a00a892ea8c4164ae81b05490b7600621036a45e810ed37181db707ab36f8a7/68747470733a2f2f706f7365722e707567782e6f72672f7433627269676874736964652f706167696e6174656470726f636573736f72732f6c6963656e7365)](LICENSE.txt)[![Packagist](https://camo.githubusercontent.com/5d93d92085a4e6594bc5fe133d685d6c7d2804fe96cd229109b3f65a51aa689f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7433627269676874736964652f706167696e6174656470726f636573736f72732e7376673f7374796c653d666c6174)](https://packagist.org/packages/t3brightside/paginatedprocessors)[![Downloads](https://camo.githubusercontent.com/122711e63beb1c272d93908b7c3adc6c34d157fb2d7e8bf0602e68a241bbbb0b/68747470733a2f2f706f7365722e707567782e6f72672f7433627269676874736964652f706167696e6174656470726f636573736f72732f646f776e6c6f616473)](https://packagist.org/packages/t3brightside/paginatedprocessors)[![TYPO3](https://camo.githubusercontent.com/dd8e86da6294510a39fa8a3fdc8d34081f2c80f1288fe55c2e07220d596cfec2/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d7631322d6f72616e67652e7376673f7374796c653d666c6174)](https://extensions.typo3.org/extension/youtubevideo)[![TYPO3](https://camo.githubusercontent.com/be5af89989a96be4e06057b11c186a9cae2270a76bafe48f46a8a683b1aa0576/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d7631332d6f72616e67652e7376673f7374796c653d666c6174)](https://extensions.typo3.org/extension/youtubevideo)[![TYPO3](https://camo.githubusercontent.com/e05dec07946065a004d6a32dbd8e17c60d2c0e86889cd154362ec6220616a661/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d7631342d6f72616e67652e7376673f7374796c653d666c6174)](https://extensions.typo3.org/extension/youtubevideo)[![Brightside](https://camo.githubusercontent.com/2a3445eb9de63fc7d8651eee6dea87d4bc1d9e9d006b56b51d394a3cda7c12d9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f62792d7433627269676874736964652e636f6d2d6f72616e67652e7376673f7374796c653d666c6174)](https://t3brightside.com)

**TYPO3 CMS dataProcessors with pagination**

System requirements
-------------------

[](#system-requirements)

- TYPO3 v12, v13, v14

Features
--------

[](#features)

- PaginatedDatabaseQueryProcessor
- PaginatedFilesProcessor
- PaginatedMenuProcessor
- Pagination on/off
- Number of items per page
- Number of pagination links
- URL Segment from content element or TypoScript
- Anchor links to content element or custom id

Installation &amp; Updates
--------------------------

[](#installation--updates)

- `composer req t3brightside/paginatedprocessors` or from TYPO3 extension repository **[paginatedprocessors](https://extensions.typo3.org/extension/paginatedprocessors/)**
- Include static template
- Enable default CSS from constant editor: **paginatedprocessors.enableDefaultStyles = 1**
- See the [ChangeLog](ChangeLog) for updates and breaking changes

Usage
-----

[](#usage)

**Available DataProcessors**

```
Brightside\Paginatedprocessors\DataProcessing\PaginatedDatabaseQueryProcessor
Brightside\Paginatedprocessors\DataProcessing\PaginatedFilesProcessor
Brightside\Paginatedprocessors\DataProcessing\PaginatedMenuProcessor

```

**TypoScript example**

```
10 = Brightside\Paginatedprocessors\DataProcessing\PaginatedDatabaseQueryProcessor
10 {
  pagination {
    isActive = 1
    # isActive.field = tx_paginatedprocessors_paginationenabled

    itemsPerPage = 10
    itemsPerPage.override.field = tx_paginatedprocessors_itemsperpage

    pageLinksShown = 7
    pageLinksShown.override.field = tx_paginatedprocessors_pagelinksshown

    ## configure anchor links
    # anchorActive = 1
    anchorActive.field = tx_paginatedprocessors_anchor
    ## set element uid manually
    # anchorId = 123
    ## or current content element from uid field
    anchorId.field = uid
    # content uid overriden if custom anchor element set in pagination options
    anchorId.override.field = tx_paginatedprocessors_anchorid

    ## uniqueId is mandatory
    ## returns array 'pagination'
    ## URL example /21/2
    uniqueId.field = uid
    uniquePaginatorName = 0

    ## returns array 'pagination'
    ## URL example /gallery/2
    ## need to map in routeEnhancers, see PaginatedprocessorsByUnigueIdInTs
    # uniqueId = gallery

    ## returns array 'pagination_gallery'
    ## URL example /gallery/2
    ## need to map in routeEnhancers, see PaginatedprocessorsByUnigueIdInTs
    # uniqueId = gallery
    # uniquePaginatorName = 1
  }
  ...
}

```

**Pagination link control examples**

```
pageLinksShown = 1
[]

pageLinksShown = 0 or is bigger than amount of pages + 2
[]

pageLinksShown = 5
[]

```

**Template**

```

```

**Route enhancers**

```
imports:
  -
    resource: EXT:paginatedprocessors/Configuration/Routes.yaml
```

In your own extensions
----------------------

[](#in-your-own-extensions)

**Add pagination fields to custom content element**

```
# There's a palette available to use for tt_content
--palette--;Pagination;paginatedprocessors,

```

**Paginate a custom dataProcessor**

Follow the comments in: [PaginatedDatabaseQueryProcessor.php](Classes/DataProcessing/PaginatedDatabaseQueryProcessor.php)

Sources
-------

[](#sources)

- [GitHub](https://github.com/t3brightside/paginatedprocessors)
- [Packagist](https://packagist.org/packages/t3brightside/paginatedprocessors)
- [TER](https://extensions.typo3.org/extension/paginatedprocessors/)

Development and maintenance
---------------------------

[](#development-and-maintenance)

[Brightside OÜ – TYPO3 development and hosting specialised web agency](https://t3brightside.com/)

###  Health Score

53

—

FairBetter than 96% of packages

Maintenance81

Actively maintained with recent releases

Popularity37

Limited adoption so far

Community23

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 98% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~65 days

Recently: every ~36 days

Total

26

Last Release

67d ago

Major Versions

0.1.0 → 1.0.02021-11-09

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/771791?v=4)[Tanel Põld](/maintainers/t3brightside)[@t3brightside](https://github.com/t3brightside)

---

Top Contributors

[![t3brightside](https://avatars.githubusercontent.com/u/771791?v=4)](https://github.com/t3brightside "t3brightside (146 commits)")[![dpolakovics](https://avatars.githubusercontent.com/u/12543408?v=4)](https://github.com/dpolakovics "dpolakovics (1 commits)")[![georgringer](https://avatars.githubusercontent.com/u/1905663?v=4)](https://github.com/georgringer "georgringer (1 commits)")[![whmyr](https://avatars.githubusercontent.com/u/1669595?v=4)](https://github.com/whmyr "whmyr (1 commits)")

---

Tags

paginationtypo3typo3-extensionpaginationtypo3dataprocessing

### Embed Badge

![Health badge](/badges/t3brightside-paginatedprocessors/health.svg)

```
[![Health](https://phpackages.com/badges/t3brightside-paginatedprocessors/health.svg)](https://phpackages.com/packages/t3brightside-paginatedprocessors)
```

###  Alternatives

[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

103519.9k53](/packages/friendsoftypo3-content-blocks)[typo3/cms-styleguide

TYPO3 extension to showcase TYPO3 Backend capabilities

106760.3k33](/packages/typo3-cms-styleguide)[wazum/sluggi

TYPO3 extension for URL slug management with inline editing, auto-sync, locking, access control, and redirects

40529.5k](/packages/wazum-sluggi)[t3brightside/pagelist

TYPO3 CMS extension to create news, events, vacancies and products or just page lists. Demo: microtemplate.t3brightside.com

1121.5k1](/packages/t3brightside-pagelist)[georgringer/numbered-pagination

Improved pagination for TYPO3

281.5M16](/packages/georgringer-numbered-pagination)[jweiland/events2

Events 2 - Create single and recurring events

2166.7k3](/packages/jweiland-events2)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
