Initial commit - Typo3 11.5.41

This commit is contained in:
Matteo Gallo
2026-07-03 17:53:31 +02:00
commit 5ca4743197
6811 changed files with 568848 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
routeEnhancers:
MediaGallery:
type: Extbase
extension: FsMediaGallery
plugin: Mediagallery
routes:
- routePath: '/'
_controller: 'MediaAlbum::nestedList'
- routePath: '/{page}'
_controller: 'MediaAlbum::nestedList'
_arguments:
page: 'currentAlbumPage'
- routePath: '/album/{media_album}'
_controller: 'MediaAlbum::nestedList'
_arguments:
media_album: mediaAlbum
- routePath: '/album/{media_album}/{page}'
_controller: 'MediaAlbum::nestedList'
_arguments:
media_album: mediaAlbum
page: 'currentPage'
defaultController: 'MediaAlbum::nestedList'
aspects:
media_album:
type: PersistedAliasMapper
tableName: sys_file_collection
routeFieldName: slug
page:
type: StaticRangeMapper
start: '1'
end: '100'