2015-08-18 00:00:26 +00:00
|
|
|
services:
|
2016-10-06 22:16:20 +00:00
|
|
|
migrate.plugin_event_subscriber:
|
|
|
|
class: Drupal\migrate\Plugin\PluginEventSubscriber
|
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
2015-08-18 00:00:26 +00:00
|
|
|
cache.migrate:
|
|
|
|
class: Drupal\Core\Cache\CacheBackendInterface
|
|
|
|
tags:
|
|
|
|
- { name: cache.bin }
|
|
|
|
factory: cache_factory:get
|
|
|
|
arguments: [migrate]
|
|
|
|
plugin.manager.migrate.source:
|
2016-10-06 22:16:20 +00:00
|
|
|
class: Drupal\migrate\Plugin\MigrateSourcePluginManager
|
|
|
|
arguments: [source, '@container.namespaces', '@cache.discovery', '@module_handler']
|
2015-08-18 00:00:26 +00:00
|
|
|
plugin.manager.migrate.process:
|
|
|
|
class: Drupal\migrate\Plugin\MigratePluginManager
|
|
|
|
arguments: [process, '@container.namespaces', '@cache.discovery', '@module_handler', 'Drupal\migrate\Annotation\MigrateProcessPlugin']
|
|
|
|
plugin.manager.migrate.destination:
|
|
|
|
class: Drupal\migrate\Plugin\MigrateDestinationPluginManager
|
|
|
|
arguments: [destination, '@container.namespaces', '@cache.discovery', '@module_handler', '@entity.manager']
|
|
|
|
plugin.manager.migrate.id_map:
|
|
|
|
class: Drupal\migrate\Plugin\MigratePluginManager
|
|
|
|
arguments: [id_map, '@container.namespaces', '@cache.discovery', '@module_handler']
|
2017-04-13 14:53:35 +00:00
|
|
|
cache.discovery_migration:
|
|
|
|
class: Drupal\Core\Cache\CacheBackendInterface
|
|
|
|
tags:
|
|
|
|
- { name: cache.bin }
|
|
|
|
factory: cache_factory:get
|
|
|
|
arguments: [discovery_migration]
|
2016-04-20 16:56:34 +00:00
|
|
|
plugin.manager.migration:
|
|
|
|
class: Drupal\migrate\Plugin\MigrationPluginManager
|
2017-04-13 14:53:35 +00:00
|
|
|
arguments: ['@module_handler', '@cache.discovery_migration', '@language_manager']
|