]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/config/services.yml
80f737f8aa3eb32bdaf9758a233dcf6ac99e33e9
[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.table_prefix_subscriber:
37 class: Wallabag\CoreBundle\Subscriber\TablePrefixSubscriber
38 arguments:
39 - %database_table_prefix%
40 tags:
41 - { name: doctrine.event_subscriber }
42
43 wallabag_core.graby:
44 class: Graby\Graby
45 arguments:
46 - { error_message: false }
47 calls:
48 - [ setLogger, [ "@logger" ] ]
49 tags:
50 - { name: monolog.logger, channel: graby }
51
52 wallabag_core.content_proxy:
53 class: Wallabag\CoreBundle\Helper\ContentProxy
54 arguments:
55 - "@wallabag_core.graby"
56 - "@wallabag_core.rule_based_tagger"
57 - "@logger"
58
59 wallabag_core.rule_based_tagger:
60 class: Wallabag\CoreBundle\Helper\RuleBasedTagger
61 arguments:
62 - "@rulerz"
63 - "@wallabag_core.tag_repository"
64 - "@wallabag_core.entry_repository"
65
66 # repository as a service
67 wallabag_core.entry_repository:
68 class: Wallabag\CoreBundle\Repository\EntryRepository
69 factory: [ @doctrine.orm.default_entity_manager, getRepository ]
70 arguments:
71 - WallabagCoreBundle:Entry
72
73 wallabag_core.tag_repository:
74 class: Wallabag\CoreBundle\Repository\TagRepository
75 factory: [ @doctrine.orm.default_entity_manager, getRepository ]
76 arguments:
77 - WallabagCoreBundle:Tag
78
79 wallabag_core.registration_confirmed:
80 class: Wallabag\CoreBundle\EventListener\RegistrationConfirmedListener
81 arguments:
82 - "@doctrine.orm.entity_manager"
83 - %theme%
84 - %items_on_page%
85 - %rss_limit%
86 - %language%
87 tags:
88 - { name: kernel.event_subscriber }
89
90 wallabag_core.helper.entries_export:
91 class: Wallabag\CoreBundle\Helper\EntriesExport
92 arguments:
93 - %wallabag_url%
94 - src/Wallabag/CoreBundle/Resources/views/themes/_global/public/img/appicon/apple-touch-icon-152.png
95
96 wallabag.operator.array.matches:
97 class: Wallabag\CoreBundle\Operator\PHP\Matches
98 tags:
99 - { name: rulerz.operator, executor: rulerz.executor.array, operator: matches }
100
101 wallabag.operator.doctrine.matches:
102 class: Wallabag\CoreBundle\Operator\Doctrine\Matches
103 tags:
104 - { name: rulerz.operator, executor: rulerz.executor.doctrine, operator: matches, inline: true }