FieldDiscoveryInterface
interface FieldDiscoveryInterface (View source)
Provides field discovery for Drupal 6 & 7 migrations.
Constants
| DRUPAL_6 |
|
| DRUPAL_7 |
|
Methods
Adds the field processes for an entity to a migration.
Adds the field processes for a bundle to a migration.
Details
addAllFieldProcesses(MigrationInterface $migration)
| internal |
Adds the field processes to a migration.
This method is used in field migrations to execute the migration process alter method specified by the 'field_plugin_method' key of the migration for all field plugins applicable to this Drupal to Drupal migration. This method is used internally for field, field instance, widget, and formatter migrations to allow field plugins to alter the process for these migrations.
addEntityFieldProcesses(MigrationInterface $migration, string $entity_type_id)
Adds the field processes for an entity to a migration.
This method is used in field migrations to execute the migration process alter method specified by the 'field_plugin_method' key of the migration for all field plugins applicable to this Drupal to Drupal migration. This method is used internally for field, field instance, widget, and formatter migrations to allow field plugins to alter the process for these migrations.
addBundleFieldProcesses(MigrationInterface $migration, string $entity_type_id, string $bundle)
Adds the field processes for a bundle to a migration.