You are here

d7_eck.yml in Entity Construction Kit (ECK) 8

migrations/d7_eck.yml

File

migrations/d7_eck.yml
View source
  1. # This is a follow-up migration so that all the ECK entity types exist when
  2. # the deriver is executed. For custom migration, it's not necessary if
  3. # destination entity type already exists.
  4. # @see \Drupal\eck\Plugin\migrate\D7EckType::generateFollowUpMigrations().
  5. id: d7_eck
  6. label: ECK Entities
  7. migration_tags:
  8. - Drupal 7
  9. - Content
  10. - Follow-up migration
  11. deriver: Drupal\eck\Plugin\migrate\D7EckDeriver
  12. source:
  13. plugin: d7_eck_entity
  14. process:
  15. # If you are using this file to build a custom migration consider removing
  16. # id field to allow incremental migrations.
  17. id: id
  18. title: title
  19. langcode:
  20. plugin: default_value
  21. source: language
  22. default_value: "und"
  23. # The destination plugin is provided via D7EckDeriver.
  24. # If you are using this file to build a custom migration you
  25. # should configure the destination plugin. If the destination
  26. # entity type id is foo, then the destination plugin
  27. # should be eck:foo.
  28. migration_dependencies:
  29. required:
  30. - d7_eck_type
  31. - d7_eck_bundle
  32. optional:
  33. - d7_field_instance