mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-17 15:54:23 +00:00
59 lines
2.0 KiB
YAML
59 lines
2.0 KiB
YAML
services:
|
|
chill.event.form.type.pick_event_type:
|
|
class: Chill\EventBundle\Form\Type\PickEventTypeType
|
|
arguments:
|
|
- "@chill.main.helper.translatable_string"
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
chill.event.form.event_type_test:
|
|
class: Chill\EventBundle\Form\EventType
|
|
arguments:
|
|
- "@security.token_storage"
|
|
- "@chill.main.security.authorization.helper"
|
|
- "@chill.main.helper.translatable_string"
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
chill.event.form.participation_type:
|
|
class: Chill\EventBundle\Form\ParticipationType
|
|
arguments:
|
|
- "@chill.main.helper.translatable_string"
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
chill.event.form.pick_role_type:
|
|
class: Chill\EventBundle\Form\Type\PickRoleType
|
|
arguments:
|
|
- "@chill.main.helper.translatable_string"
|
|
- "@translator"
|
|
- "@chill_event.repository.role"
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
chill.event.form.pick_status_type:
|
|
class: Chill\EventBundle\Form\Type\PickStatusType
|
|
arguments:
|
|
- "@chill.main.helper.translatable_string"
|
|
- "@translator"
|
|
- "@chill_event.repository.status"
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
chill.event.form.role_type:
|
|
class: Chill\EventBundle\Form\RoleType
|
|
arguments:
|
|
- "@chill.main.helper.translatable_string"
|
|
tags:
|
|
- { name: form.type }
|
|
|
|
Chill\EventBundle\Form\Type\PickEventType:
|
|
arguments:
|
|
$eventRepository: "@chill_event.repository.event"
|
|
$tokenStorage: "@security.token_storage"
|
|
$authorizationHelper: "@chill.main.security.authorization.helper"
|
|
$urlGenerator: '@Symfony\Component\Routing\Generator\UrlGeneratorInterface'
|
|
$translator: '@Symfony\Component\Translation\TranslatorInterface'
|
|
tags:
|
|
- { name: form.type }
|