X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FResources%2Fconfig%2Fservices.yml;h=8e21b0528aeb95c701f5095a6f625be988a207d0;hb=add597bad95b30dbecab3aecc8362a1ccd427976;hp=3beb5d0ef86a56a3af267481f4481720df515973;hpb=9c08a891f9bb90bc3f23a575a734283c1ee00ba1;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml index 3beb5d0e..8e21b052 100644 --- a/src/Wallabag/CoreBundle/Resources/config/services.yml +++ b/src/Wallabag/CoreBundle/Resources/config/services.yml @@ -2,7 +2,7 @@ services: wallabag_core.helper.detect_active_theme: class: Wallabag\CoreBundle\Helper\DetectActiveTheme arguments: - - @security.context + - @security.token_storage - %theme% # default theme from parameters.yml # custom form type @@ -10,9 +10,15 @@ services: 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: @@ -27,16 +33,40 @@ services: arguments: - @doctrine - wallabag_core.doctrine.prefixed_naming_strategy: - class: Wallabag\CoreBundle\Doctrine\Mapping\PrefixedNamingStrategy - arguments: [%database_table_prefix%] + wallabag_core.table_prefix_subscriber: + class: Wallabag\CoreBundle\Subscriber\TablePrefixSubscriber + arguments: + - %database_table_prefix% + tags: + - { name: doctrine.event_subscriber } 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 } + + wallabag_core.helper.entries_export: + class: Wallabag\CoreBundle\Helper\EntriesExport + arguments: + - %wallabag_url% + - src/Wallabag/CoreBundle/Resources/views/themes/_global/public/img/appicon/apple-touch-icon-152.png