-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathentity_summary.services.yml
30 lines (29 loc) · 1.25 KB
/
entity_summary.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
services:
entity_summary.generator:
class: Drupal\entity_summary\Generator
arguments: [{ }]
entity_summary.caching_generator:
class: Drupal\entity_summary\CachingGenerator
arguments: ['@entity_summary.generator', '@cache.data']
entity_summary.component_generator.fieldable_entity:
class: Drupal\entity_summary\ComponentGenerator\FieldableEntityGenerator
tags:
- { name: entity_summary_component_generator }
arguments: ['@entity_field.manager']
entity_summary.component_generator.field_item_list:
class: Drupal\entity_summary\ComponentGenerator\FieldItemListGenerator
tags:
- { name: entity_summary_component_generator }
entity_summary.component_generator.entity_reference_item:
class: Drupal\entity_summary\ComponentGenerator\EntityReferenceItemGenerator
tags:
- { name: entity_summary_component_generator }
entity_summary.component_generator.string_item:
class: Drupal\entity_summary\ComponentGenerator\StringItemGenerator
tags:
- { name: entity_summary_component_generator }
entity_summary.component_generator.text_item:
class: Drupal\entity_summary\ComponentGenerator\TextItemGenerator
tags:
- { name: entity_summary_component_generator }
arguments: ['@renderer']