function FieldPluginBase::alterFieldWidgetMigration
Apply any custom processing to the field widget migration.
Parameters
\Drupal\migrate\Plugin\MigrationInterface $migration: The migration entity.
Overrides MigrateFieldInterface::alterFieldWidgetMigration
File
- 
              core/modules/ migrate_drupal/ src/ Plugin/ migrate/ field/ FieldPluginBase.php, line 40 
Class
- FieldPluginBase
- The base class for all field plugins.
Namespace
Drupal\migrate_drupal\Plugin\migrate\fieldCode
public function alterFieldWidgetMigration(MigrationInterface $migration) {
  $process = [];
  foreach ($this->getFieldWidgetMap() as $source_widget => $destination_widget) {
    $process['type']['map'][$source_widget] = $destination_widget;
  }
  $migration->mergeProcessOfProperty('options/type', $process);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
