2015-02-09 22:54:29 +01:00
|
|
|
services:
|
2015-02-23 22:55:06 +01:00
|
|
|
wallabag_core.helper.detect_active_theme:
|
|
|
|
|
class: Wallabag\CoreBundle\Helper\DetectActiveTheme
|
|
|
|
|
arguments:
|
|
|
|
|
- @security.context
|
2015-03-01 08:22:29 +01:00
|
|
|
- %theme% # default theme from parameters.yml
|
2015-02-23 22:55:06 +01:00
|
|
|
|
2015-03-07 23:25:36 +01:00
|
|
|
# custom form type
|
2015-02-23 22:55:06 +01:00
|
|
|
wallabag_core.form.type.config:
|
|
|
|
|
class: Wallabag\CoreBundle\Form\Type\ConfigType
|
|
|
|
|
arguments:
|
|
|
|
|
- %liip_theme.themes%
|
2015-10-01 16:28:38 +02:00
|
|
|
- %wallabag_core.languages%
|
2015-02-23 22:55:06 +01:00
|
|
|
tags:
|
|
|
|
|
- { name: form.type, alias: config }
|
2015-03-07 23:25:36 +01:00
|
|
|
|
2015-09-29 14:31:52 +02:00
|
|
|
wallabag_core.form.registration:
|
|
|
|
|
class: Wallabag\CoreBundle\Form\Type\RegistrationType
|
|
|
|
|
tags:
|
|
|
|
|
- { name: form.type, alias: wallabag_user_registration }
|
|
|
|
|
|
2015-03-07 23:25:36 +01:00
|
|
|
wallabag_core.form.type.forgot_password:
|
|
|
|
|
class: Wallabag\CoreBundle\Form\Type\ForgotPasswordType
|
|
|
|
|
arguments:
|
|
|
|
|
- @doctrine
|
|
|
|
|
tags:
|
|
|
|
|
- { name: form.type, alias: forgot_password }
|
2015-03-28 14:27:45 +01:00
|
|
|
|
|
|
|
|
wallabag_core.param_converter.username_rsstoken_converter:
|
|
|
|
|
class: Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter
|
|
|
|
|
tags:
|
|
|
|
|
- { name: request.param_converter, converter: username_rsstoken_converter }
|
|
|
|
|
arguments:
|
|
|
|
|
- @doctrine
|
2015-03-28 11:29:19 +01:00
|
|
|
|
|
|
|
|
wallabag_core.doctrine.prefixed_naming_strategy:
|
|
|
|
|
class: Wallabag\CoreBundle\Doctrine\Mapping\PrefixedNamingStrategy
|
2015-10-01 22:25:23 +02:00
|
|
|
arguments:
|
|
|
|
|
- %database_table_prefix%
|
2015-08-24 12:27:17 +02:00
|
|
|
|
|
|
|
|
wallabag_core.graby:
|
|
|
|
|
class: Graby\Graby
|
2015-09-10 21:57:25 +02:00
|
|
|
arguments:
|
|
|
|
|
- { error_message: false }
|
|
|
|
|
|
|
|
|
|
wallabag_core.content_proxy:
|
|
|
|
|
class: Wallabag\CoreBundle\Helper\ContentProxy
|
|
|
|
|
arguments:
|
|
|
|
|
- @wallabag_core.graby
|
2015-09-29 14:31:52 +02:00
|
|
|
|
|
|
|
|
wallabag_core.registration_confirmed:
|
2015-09-29 17:05:17 +02:00
|
|
|
class: Wallabag\CoreBundle\EventListener\RegistrationConfirmedListener
|
2015-10-01 22:25:23 +02:00
|
|
|
arguments:
|
|
|
|
|
- @doctrine.orm.entity_manager
|
|
|
|
|
- %theme%
|
|
|
|
|
- %items_on_page%
|
|
|
|
|
- %rss_limit%
|
|
|
|
|
- %language%
|
2015-09-29 14:31:52 +02:00
|
|
|
tags:
|
|
|
|
|
- { name: kernel.event_subscriber }
|