Skip to content

Commit

Permalink
Fix sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
bytehead committed Dec 30, 2021
1 parent e8d2d79 commit 83aab2e
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions core-bundle/src/Resources/config/listener.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,19 @@ services:
arguments:
- '@database_connection'

contao.listener.data_container.root_page_dependent_module:
class: Contao\CoreBundle\EventListener\DataContainer\RootPageDependentModuleListener
public: true
arguments:
- '@database_connection'
- '@translator'
- '@contao.routing.scope_matcher'
- '@request_stack'
- '@Contao\CoreBundle\Csrf\ContaoCsrfTokenManager'
- '%contao.csrf_token_name%'
tags:
- { name: contao.hook, hook: loadDataContainer }

contao.listener.data_container.theme_templates:
class: Contao\CoreBundle\EventListener\DataContainer\ThemeTemplatesListener
arguments:
Expand Down Expand Up @@ -437,19 +450,6 @@ services:
arguments:
- '@translator'

contao.listener.data_container.root_page_dependent_module:
class: Contao\CoreBundle\EventListener\DataContainer\RootPageDependentModuleListener
public: true
arguments:
- '@database_connection'
- '@translator'
- '@contao.routing.scope_matcher'
- '@request_stack'
- '@Contao\CoreBundle\Csrf\ContaoCsrfTokenManager'
- '%contao.csrf_token_name%'
tags:
- { name: contao.hook, hook: loadDataContainer }

# Backwards compatibility
Contao\CoreBundle\EventListener\DataContainer\ContentCompositionListener:
alias: contao.listener.data_container.content_composition
Expand Down

0 comments on commit 83aab2e

Please sign in to comment.