t3brightside/paginatedprocessors
最新稳定版本:1.7.1
Composer 安装命令:
composer require t3brightside/paginatedprocessors
包简介
Paginated dataprocessors for TYPO3
README 文档
README
TYPO3 CMS dataProcessors with pagination
System requirements
- TYPO3 v12, v13, v14
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 & Updates
composer req t3brightside/paginatedprocessorsor from TYPO3 extension repository paginatedprocessors- Include static template
- Enable default CSS from constant editor: paginatedprocessors.enableDefaultStyles = 1
- See the ChangeLog for updates and breaking changes
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
[<<][<][-4/12-][>][>>]
pageLinksShown = 0 or is bigger than amount of pages + 2
[<][1][2][-3-][4][5][>]
pageLinksShown = 5
[<][1]…[5][6][-7-][8][9]…[60][>]
Template
<f:for each="{pages}" as="page" iteration="iterator"> <f:render partial="List" arguments="{_all}" /> </f:for> <f:if condition="{pagination.numberOfPages} > 1"> <f:render partial="Pagination" arguments="{pagination:pagination}" /> </f:if> <!-- with uniquePaginatorName turned on --> <f:if condition="{pagination_gallery.numberOfPages} > 1"> <f:render partial="Pagination" arguments="{pagination:pagination_gallery}" /> </f:if>
Route enhancers
imports: - resource: EXT:paginatedprocessors/Configuration/Routes.yaml
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
Sources
Development and maintenance
Brightside OÜ – TYPO3 development and hosting specialised web agency
统计信息
- 总下载量: 49.39k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 6
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2021-11-05