Created
September 21, 2015 12:57
-
-
Save aertmann/b1b7ea5faf0a6e2e524e to your computer and use it in GitHub Desktop.
Neos custom plugin routing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - | |
| name: 'Event single' | |
| uriPattern: '{node}/events/{--acme_calendar-calendar.event}' | |
| defaults: | |
| '@package': 'TYPO3.Neos' | |
| '@controller': 'Frontend\Node' | |
| '@action': 'show' | |
| '@format': 'html' | |
| '--acme_calendar-calendar': | |
| '@package': 'Acme.Calendar' | |
| '@subpackage': '' | |
| '@controller': 'Calendar' | |
| '@action': 'event' | |
| routeParts: | |
| node: | |
| handler: TYPO3\Neos\Routing\FrontendNodeRoutePartHandlerInterface | |
| '--acme_calendar-calendar.event': | |
| objectType: '\Acme\Calendar\Domain\Model\Event' | |
| uriPattern: '{title}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment