26 lines
897 B
YAML
26 lines
897 B
YAML
services:
|
|
# Alias MUSS vorhanden sein (richtig platziert)
|
|
Psr\Container\ContainerInterface: '@service_container'
|
|
|
|
Mummert\ContaoMeilisearchBundle\:
|
|
resource: '../../{Command,EventListener,Service}'
|
|
autowire: true
|
|
autoconfigure: true
|
|
|
|
Mummert\ContaoMeilisearchBundle\EventListener\MeilisearchPageMarkerListener:
|
|
autowire: true
|
|
autoconfigure: false
|
|
tags:
|
|
- { name: contao.hook, hook: outputFrontendTemplate, method: onOutputFrontendTemplate }
|
|
|
|
Mummert\ContaoMeilisearchBundle\EventListener\IndexPageListener:
|
|
autowire: true
|
|
autoconfigure: false
|
|
tags:
|
|
- { name: contao.hook, hook: indexPage, method: onIndexPage }
|
|
|
|
Mummert\ContaoMeilisearchBundle\Controller\FrontendModule\MeilisearchSearchController:
|
|
autowire: true
|
|
autoconfigure: false
|
|
tags:
|
|
- { name: contao.frontend_module, type: meilisearch_search, category: search } |