aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/config/services.yml
blob: 3c479ff666607b0cce074c14c9c44f81c0b4e16a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
services:
    wallabag_core.helper.detect_active_theme:
        class: Wallabag\CoreBundle\Helper\DetectActiveTheme
        arguments:
            - @security.context
            - %theme% # default theme from parameters.yml

    # custom form type
    wallabag_core.form.type.config:
        class: Wallabag\CoreBundle\Form\Type\ConfigType
        arguments:
            - %liip_theme.themes%
            - %wallabag_core.languages%
        tags:
            - { name: form.type, alias: config }

    wallabag_core.form.registration:
        class: Wallabag\CoreBundle\Form\Type\RegistrationType
        tags:
            - { name: form.type, alias: wallabag_user_registration }

    wallabag_core.form.type.forgot_password:
        class: Wallabag\CoreBundle\Form\Type\ForgotPasswordType
        arguments:
            - @doctrine
        tags:
            - { name: form.type, alias: forgot_password }

    wallabag_core.param_converter.username_rsstoken_converter:
        class: Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter
        tags:
            - { name: request.param_converter, converter: username_rsstoken_converter }
        arguments:
            - @doctrine

    wallabag_core.doctrine.prefixed_naming_strategy:
        class: Wallabag\CoreBundle\Doctrine\Mapping\PrefixedNamingStrategy
        arguments:
            - %database_table_prefix%

    wallabag_core.graby:
        class: Graby\Graby
        arguments:
            - { error_message: false }
        calls:
            - [ setLogger, [ @logger ] ]
        tags:
            - { name: monolog.logger, channel: graby }

    wallabag_core.content_proxy:
        class: Wallabag\CoreBundle\Helper\ContentProxy
        arguments:
            - @wallabag_core.graby

    wallabag_core.registration_confirmed:
        class: Wallabag\CoreBundle\EventListener\RegistrationConfirmedListener
        arguments:
            - @doctrine.orm.entity_manager
            - %theme%
            - %items_on_page%
            - %rss_limit%
            - %language%
        tags:
            - { name: kernel.event_subscriber }