X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FResources%2Fconfig%2Fservices.yml;h=c38787ded9040dac07844a2f5c6b5224209814d9;hb=3d3ed955f11006a408c6596eb9151a0afb28e721;hp=b066c1a3bbe5963e6ee220d1112ac887d196ddc1;hpb=7ffb1e80bff2c54fe3fe4343484d377eda660c3f;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml index b066c1a3..c38787de 100644 --- a/src/Wallabag/CoreBundle/Resources/config/services.yml +++ b/src/Wallabag/CoreBundle/Resources/config/services.yml @@ -1,15 +1,59 @@ services: - wallabag_core.twig.wallabag: - class: Wallabag\CoreBundle\Twig\Extension\WallabagExtension - tags: - - { name: twig.extension } - wsse.security.authentication.provider: - class: Wallabag\CoreBundle\Security\Authentication\Provider\WsseProvider - public: false - arguments: ['', '%kernel.cache_dir%/security/nonces'] - wsse.security.authentication.listener: - class: Wallabag\CoreBundle\Security\Firewall\WsseListener - public: false - tags: - - { name: monolog.logger, channel: wsse } - arguments: ['@security.context', '@security.authentication.manager', '@logger'] + 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% + 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 } + + 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 }