mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
144 lines
4.7 KiB
YAML
144 lines
4.7 KiB
YAML
services:
|
|
_defaults:
|
|
autowire: true
|
|
autoconfigure: true
|
|
|
|
chill.main.form.type.translatable.string:
|
|
class: Chill\MainBundle\Form\Type\TranslatableStringFormType
|
|
arguments:
|
|
- "%chill_main.available_languages%"
|
|
#- "%framework.translator.fallback%"
|
|
- "@translator.default"
|
|
tags:
|
|
- { name: form.type, alias: translatable_string }
|
|
|
|
chill.main.form.type.select2choice:
|
|
class: Chill\MainBundle\Form\Type\Select2ChoiceType
|
|
tags:
|
|
- {name: form.type, alias: select2_choice}
|
|
|
|
chill.main.form.type.select2entity:
|
|
class: Chill\MainBundle\Form\Type\Select2EntityType
|
|
tags:
|
|
- {name: form.type, alias: select2_entity }
|
|
|
|
chill.main.form.type.select2country:
|
|
class: Chill\MainBundle\Form\Type\Select2CountryType
|
|
arguments:
|
|
- "@request_stack"
|
|
- "@doctrine.orm.entity_manager"
|
|
- "@chill.main.helper.translatable_string"
|
|
- '@Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface'
|
|
tags:
|
|
- { name: form.type, alias: select2_chill_country }
|
|
|
|
chill.main.form.type.select2language:
|
|
class: Chill\MainBundle\Form\Type\Select2LanguageType
|
|
arguments:
|
|
- "@request_stack"
|
|
- "@doctrine.orm.entity_manager"
|
|
- "@chill.main.helper.translatable_string"
|
|
- '@Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface'
|
|
tags:
|
|
- { name: form.type, alias: select2_chill_language }
|
|
|
|
Chill\MainBundle\Form\Type\PickCenterType: ~
|
|
|
|
chill.main.form.type.composed_role_scope:
|
|
class: Chill\MainBundle\Form\Type\ComposedRoleScopeType
|
|
arguments:
|
|
- "@chill.main.helper.translatable_string"
|
|
- "@chill.main.role_provider"
|
|
tags:
|
|
- { name: form.type, alias: composed_role_scope }
|
|
|
|
|
|
chill.main.form.type.postal_code_type:
|
|
class: Chill\MainBundle\Form\Type\PostalCodeType
|
|
arguments:
|
|
- "@chill.main.helper.translatable_string"
|
|
- '@Symfony\Component\Routing\Generator\UrlGeneratorInterface'
|
|
- '@Chill\MainBundle\Form\ChoiceLoader\PostalCodeChoiceLoader'
|
|
- '@Symfony\Component\Translation\TranslatorInterface'
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
Chill\MainBundle\Form\ChoiceLoader\PostalCodeChoiceLoader: ~
|
|
|
|
chill.main.form.type.export:
|
|
class: Chill\MainBundle\Form\Type\Export\ExportType
|
|
tags:
|
|
- { name: form.type }
|
|
arguments:
|
|
- '@Chill\MainBundle\Export\ExportManager'
|
|
|
|
chill.main.form.pick_formatter_type:
|
|
class: Chill\MainBundle\Form\Type\Export\PickFormatterType
|
|
tags:
|
|
- { name: form.type }
|
|
arguments:
|
|
- '@Chill\MainBundle\Export\ExportManager'
|
|
|
|
chill.main.form.pick_centers_type:
|
|
class: Chill\MainBundle\Form\Type\Export\PickCenterType
|
|
arguments:
|
|
- "@security.token_storage"
|
|
- '@Chill\MainBundle\Export\ExportManager'
|
|
- "@chill.main.security.authorization.helper"
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
chill.main.form.formatter_type:
|
|
class: Chill\MainBundle\Form\Type\Export\FormatterType
|
|
tags:
|
|
- { name: form.type }
|
|
arguments:
|
|
- '@Chill\MainBundle\Export\ExportManager'
|
|
|
|
Chill\MainBundle\Form\Type\DataTransformer\CenterTransformer: ~
|
|
|
|
chill.main.form.advanced_search_type:
|
|
class: Chill\MainBundle\Form\AdvancedSearchType
|
|
arguments:
|
|
- "@chill_main.search_provider"
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
Chill\MainBundle\Form\UserPasswordType:
|
|
arguments:
|
|
$chillLogger: '@monolog.logger.chill'
|
|
$passwordEncoder: '@Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface'
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
Chill\MainBundle\Form\UserType: ~
|
|
|
|
Chill\MainBundle\Form\PermissionsGroupType:
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
chill.main.form.type.comment:
|
|
class: Chill\MainBundle\Form\Type\CommentType
|
|
arguments:
|
|
- "@security.token_storage"
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
Chill\MainBundle\Form\Type\PickAddressType: ~
|
|
|
|
Chill\MainBundle\Form\DataTransform\AddressToIdDataTransformer: ~
|
|
|
|
Chill\MainBundle\Form\DataTransform\AddressToIdDataTransformer:
|
|
autoconfigure: true
|
|
autowire: true
|
|
|
|
Chill\MainBundle\Form\LocationFormType:
|
|
autowire: true
|
|
autoconfigure: true
|
|
|
|
Chill\MainBundle\Form\UserCurrentLocationType:
|
|
autowire: true
|
|
autoconfigure: true
|
|
|
|
Chill\MainBundle\Form\Type\LocationFormType: ~
|