mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
50 lines
1.7 KiB
YAML
50 lines
1.7 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.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 }
|