-
Notifications
You must be signed in to change notification settings - Fork 4
/
tide_core.services.yml
37 lines (37 loc) · 1.24 KB
/
tide_core.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
services:
tide_core.event_subscriber:
class: Drupal\tide_core\EventSubscriber\TideCoreRouteAlter
tags:
- { name: event_subscriber }
tide_core.entity_update_helper:
class: Drupal\tide_core\TideEntityUpdateHelper
arguments:
- '@entity_type.manager'
- '@config.storage'
- '@config_update.extension_storage'
- '@config_update.extension_optional_storage'
- '@config.factory'
- '@event_dispatcher'
- '@entity_field.manager'
- '@entity.last_installed_schema.repository'
- '@field_storage_definition.listener'
tide_core.route_subscriber:
class: Drupal\tide_core\Routing\AutocompleteRouteSubscriber
tags:
- { name: event_subscriber }
tide_core.autocomplete_matcher:
class: Drupal\tide_core\EntityAutocompleteMatcher
arguments: ['@plugin.manager.entity_reference_selection']
tide_core.common_services:
class: Drupal\tide_core\TideCommonServices
tide_core.system_info_service:
class: Drupal\tide_core\TideSystemInfoService
arguments:
- '@cache.default'
- '@state'
- '@entity_type.manager'
- '@entity_type.bundle.info'
- '@entity_field.manager'
- '@logger.factory'
- '@file_system'
- '@?monitoring.sensor_runner'