mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
adding missing file
This commit is contained in:
parent
984512a522
commit
8ec9fb11fc
44
Resources/config/services/exports.yml
Normal file
44
Resources/config/services/exports.yml
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
services:
|
||||||
|
chill.person.export.export_count_person:
|
||||||
|
class: Chill\PersonBundle\Export\Export\CountPerson
|
||||||
|
arguments:
|
||||||
|
- "@doctrine.orm.entity_manager"
|
||||||
|
tags:
|
||||||
|
- { name: chill.export, alias: count_person }
|
||||||
|
|
||||||
|
chill.person.export.list_person:
|
||||||
|
class: Chill\PersonBundle\Export\Export\ListPerson
|
||||||
|
arguments:
|
||||||
|
- "@doctrine.orm.entity_manager"
|
||||||
|
- "@translator"
|
||||||
|
tags:
|
||||||
|
- { name: chill.export, alias: list_person }
|
||||||
|
|
||||||
|
chill.person.export.filter_gender:
|
||||||
|
class: Chill\PersonBundle\Export\Filter\GenderFilter
|
||||||
|
tags:
|
||||||
|
- { name: chill.export_filter, alias: person_gender_filter }
|
||||||
|
|
||||||
|
|
||||||
|
chill.person.export.filter_nationality:
|
||||||
|
class: Chill\PersonBundle\Export\Filter\NationalityFilter
|
||||||
|
arguments:
|
||||||
|
- "@chill.main.helper.translatable_string"
|
||||||
|
tags:
|
||||||
|
- { name: chill.export_filter, alias: person_nationality_filter }
|
||||||
|
|
||||||
|
chill.person.export.aggregator_nationality:
|
||||||
|
class: Chill\PersonBundle\Export\Aggregator\NationalityAggregator
|
||||||
|
arguments:
|
||||||
|
- "@chill.main.countries_repository"
|
||||||
|
- "@chill.main.helper.translatable_string"
|
||||||
|
- "@translator"
|
||||||
|
tags:
|
||||||
|
- { name: chill.export_aggregator, alias: person_nationality_aggregator }
|
||||||
|
|
||||||
|
chill.person.export.aggregator_gender:
|
||||||
|
class: Chill\PersonBundle\Export\Aggregator\GenderAggregator
|
||||||
|
arguments:
|
||||||
|
- "@translator"
|
||||||
|
tags:
|
||||||
|
- { name: chill.export_aggregator, alias: person_gender_aggregator }
|
Loading…
x
Reference in New Issue
Block a user