-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathargo.services.yml
41 lines (41 loc) · 1.15 KB
/
argo.services.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
services:
# Channel specific logger derived from the base service.
logger.channel.argo:
parent: logger.channel_base
arguments: ['argo']
argo.service:
class: Drupal\argo\ArgoService
arguments:
- '@argo.config_service'
- '@argo.content_export'
- '@argo.content_translate'
- '@argo.locale_service'
- '@entity.repository'
- '@entity_type.manager'
- '@entity_field.manager'
- '@content_moderation.moderation_information'
- '@content_translation.manager'
- '@database'
argo.config_service:
class: Drupal\argo\ConfigService
arguments:
- '@config.factory'
- '@config.storage'
- '@config.manager'
- '@config.typed'
- '@language_manager'
argo.content_export:
class: Drupal\argo\ContentEntityExport
arguments:
- '@argo.metatag_service'
argo.content_translate:
class: Drupal\argo\ContentEntityTranslate
arguments:
- '@typed_data.data_fetcher'
- '@argo.metatag_service'
argo.locale_service:
class: Drupal\argo\LocaleService
arguments:
- '@locale.storage'
argo.metatag_service:
class: Drupal\argo\MetatagService