You are here

public function AddressField::getFieldWidgetMap in Address 8

Get a map between D6 and D8 widgets for this field type.

Return value

array The keys are D6 field widget types and the values D8 widgets.

Overrides FieldPluginBase::getFieldWidgetMap

File

src/Plugin/migrate/field/AddressField.php, line 35

Class

AddressField
Field migration plugin from D7 to D8.

Namespace

Drupal\address\Plugin\migrate\field

Code

public function getFieldWidgetMap() {
  return [
    'addressfield_standard' => 'address_default',
  ];
}