]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/config/services.yml
Fix security.context deprecation
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / config / services.yml
1 services:
2 wallabag_core.helper.detect_active_theme:
3 class: Wallabag\CoreBundle\Helper\DetectActiveTheme
4 arguments:
5 - @security.token_storage
6 - %theme% # default theme from parameters.yml
7
8 # custom form type
9 wallabag_core.form.type.config:
10 class: Wallabag\CoreBundle\Form\Type\ConfigType
11 arguments:
12 - %liip_theme.themes%
13 - %wallabag_core.languages%
14 tags:
15 - { name: form.type, alias: config }
16
17 wallabag_core.form.registration:
18 class: Wallabag\CoreBundle\Form\Type\RegistrationType
19 tags:
20 - { name: form.type, alias: wallabag_user_registration }
21
22 wallabag_core.form.type.forgot_password:
23 class: Wallabag\CoreBundle\Form\Type\ForgotPasswordType
24 arguments:
25 - @doctrine
26 tags:
27 - { name: form.type, alias: forgot_password }
28
29 wallabag_core.param_converter.username_rsstoken_converter:
30 class: Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter
31 tags:
32 - { name: request.param_converter, converter: username_rsstoken_converter }
33 arguments:
34 - @doctrine
35
36 wallabag_core.doctrine.prefixed_naming_strategy:
37 class: Wallabag\CoreBundle\Doctrine\Mapping\PrefixedNamingStrategy
38 arguments:
39 - %database_table_prefix%
40
41 wallabag_core.graby:
42 class: Graby\Graby
43 arguments:
44 - { error_message: false }
45 calls:
46 - [ setLogger, [ @logger ] ]
47 tags:
48 - { name: monolog.logger, channel: graby }
49
50 wallabag_core.content_proxy:
51 class: Wallabag\CoreBundle\Helper\ContentProxy
52 arguments:
53 - @wallabag_core.graby
54
55 wallabag_core.registration_confirmed:
56 class: Wallabag\CoreBundle\EventListener\RegistrationConfirmedListener
57 arguments:
58 - @doctrine.orm.entity_manager
59 - %theme%
60 - %items_on_page%
61 - %rss_limit%
62 - %language%
63 tags:
64 - { name: kernel.event_subscriber }