migrate.services.yml

Same filename in other branches
  1. 9 core/modules/migrate/migrate.services.yml
  2. 8.9.x core/modules/migrate/migrate.services.yml
  3. 10 core/modules/migrate/migrate.services.yml
core/modules/migrate/migrate.services.yml

File

core/modules/migrate/migrate.services.yml

View source
  1. parameters:
  2. migrate.hooks_converted: true
  3. services:
  4. _defaults:
  5. autoconfigure: true
  6. migrate.plugin_event_subscriber:
  7. class: Drupal\migrate\Plugin\PluginEventSubscriber
  8. cache.migrate:
  9. class: Drupal\Core\Cache\CacheBackendInterface
  10. tags:
  11. - { name: cache.bin }
  12. factory: ['@cache_factory', 'get']
  13. arguments: [migrate]
  14. plugin.manager.migrate.source:
  15. class: Drupal\migrate\Plugin\MigrateSourcePluginManager
  16. arguments: [source, '@container.namespaces', '@cache.discovery', '@module_handler']
  17. plugin.manager.migrate.process:
  18. class: Drupal\migrate\Plugin\MigratePluginManager
  19. arguments:
  20. - process
  21. - '@container.namespaces'
  22. - '@cache.discovery'
  23. - '@module_handler'
  24. - 'Drupal\migrate\Attribute\MigrateProcess'
  25. - 'Drupal\migrate\Annotation\MigrateProcessPlugin'
  26. plugin.manager.migrate.destination:
  27. class: Drupal\migrate\Plugin\MigrateDestinationPluginManager
  28. arguments: [destination, '@container.namespaces', '@cache.discovery', '@module_handler', '@entity_type.manager']
  29. plugin.manager.migrate.id_map:
  30. class: Drupal\migrate\Plugin\MigratePluginManager
  31. arguments: [id_map, '@container.namespaces', '@cache.discovery', '@module_handler']
  32. cache.discovery_migration:
  33. class: Drupal\Core\Cache\CacheBackendInterface
  34. tags:
  35. - { name: cache.bin }
  36. factory: ['@cache_factory', 'get']
  37. arguments: [discovery_migration]
  38. plugin.manager.migration:
  39. class: Drupal\migrate\Plugin\MigrationPluginManager
  40. arguments: ['@module_handler', '@cache.discovery_migration', '@language_manager']
  41. Drupal\migrate\Plugin\MigrationPluginManagerInterface: '@plugin.manager.migration'
  42. Drupal\migrate\MigrateBuildDependencyInterface: '@plugin.manager.migration'
  43. migrate.lookup:
  44. class: Drupal\migrate\MigrateLookup
  45. arguments: ['@plugin.manager.migration']
  46. Drupal\migrate\MigrateLookupInterface: '@migrate.lookup'
  47. migrate.stub:
  48. class: Drupal\migrate\MigrateStub
  49. arguments: ['@plugin.manager.migration']
  50. Drupal\migrate\MigrateStubInterface: '@migrate.stub'

Services

Title Deprecated Summary
cache.discovery_migration Drupal\Core\Cache\CacheBackendInterface
cache.migrate Drupal\Core\Cache\CacheBackendInterface
Drupal\migrate\MigrateBuildDependencyInterface
Drupal\migrate\MigrateLookupInterface
Drupal\migrate\MigrateStubInterface
Drupal\migrate\Plugin\MigrationPluginManagerInterface
migrate.lookup Drupal\migrate\MigrateLookup
migrate.plugin_event_subscriber Drupal\migrate\Plugin\PluginEventSubscriber
migrate.stub Drupal\migrate\MigrateStub
plugin.manager.migrate.destination Drupal\migrate\Plugin\MigrateDestinationPluginManager
plugin.manager.migrate.id_map Drupal\migrate\Plugin\MigratePluginManager
plugin.manager.migrate.process Drupal\migrate\Plugin\MigratePluginManager
plugin.manager.migrate.source Drupal\migrate\Plugin\MigrateSourcePluginManager
plugin.manager.migration Drupal\migrate\Plugin\MigrationPluginManager
_defaults

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.