wallabag/app/config/services.yml

48 lines
1.5 KiB
YAML
Raw Normal View History

2015-01-22 07:30:07 +00:00
parameters:
2015-08-22 13:35:28 +00:00
lexik_form_filter.get_filter.doctrine_orm.class: Wallabag\CoreBundle\Event\Subscriber\CustomDoctrineORMSubscriber
2015-01-22 07:30:07 +00:00
services:
twig.extension.text:
class: Twig_Extensions_Extension_Text
tags:
- { name: twig.extension }
2015-09-29 21:11:27 +00:00
wallabag.twig_extension:
class: Wallabag\CoreBundle\Twig\WallabagExtension
public: false
arguments:
- "@wallabag_core.entry_repository"
- "@wallabag_core.tag_repository"
- "@security.token_storage"
- "%wallabag_core.cache_lifetime%"
2016-10-01 13:58:26 +00:00
- "@translator"
2020-01-29 21:26:00 +00:00
- "%kernel.root_dir%"
2015-09-29 21:11:27 +00:00
tags:
- { name: twig.extension }
2015-10-01 14:28:38 +00:00
2020-04-28 07:02:39 +00:00
wallabag.twig_matomo_extension:
class: MatomoTwigExtension\MatomoTwigExtension
2016-02-19 14:27:57 +00:00
public: false
tags:
- { name: twig.extension }
2015-10-01 14:28:38 +00:00
wallabag.locale_listener:
class: Wallabag\CoreBundle\Event\Listener\LocaleListener
2015-10-01 14:28:38 +00:00
arguments: ["%kernel.default_locale%"]
tags:
- { name: kernel.event_subscriber }
wallabag.user_locale_listener:
class: Wallabag\CoreBundle\Event\Listener\UserLocaleListener
2015-10-01 14:28:38 +00:00
arguments: ["@session"]
tags:
- { name: kernel.event_listener, event: security.interactive_login, method: onInteractiveLogin }
2017-05-12 14:33:12 +00:00
craue_config_cache_provider:
class: Symfony\Component\Cache\Adapter\FilesystemAdapter
public: false
arguments:
- 'craue_config'
- 0
- '%kernel.cache_dir%'