public function MigrateFieldInterface::defineValueProcessPipeline in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate_drupal/src/Plugin/MigrateFieldInterface.php \Drupal\migrate_drupal\Plugin\MigrateFieldInterface::defineValueProcessPipeline()
- 10 core/modules/migrate_drupal/src/Plugin/MigrateFieldInterface.php \Drupal\migrate_drupal\Plugin\MigrateFieldInterface::defineValueProcessPipeline()
Apply any custom processing to the field bundle migrations.
Parameters
\Drupal\migrate\Plugin\MigrationInterface $migration: The migration entity.
string $field_name: The field name we're processing the value for.
array $data: The array of field data from FieldValues::fieldData().
1 method overrides MigrateFieldInterface::defineValueProcessPipeline()
- FieldPluginBase::defineValueProcessPipeline in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ field/ FieldPluginBase.php - Apply any custom processing to the field bundle migrations.
File
- core/
modules/ migrate_drupal/ src/ Plugin/ MigrateFieldInterface.php, line 96
Class
- MigrateFieldInterface
- Provides an interface for all field type plugins.
Namespace
Drupal\migrate_drupal\PluginCode
public function defineValueProcessPipeline(MigrationInterface $migration, $field_name, $data);