You are here

public function AddressField::getFieldFormatterMap in Address 8

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

This is used by static::alterFieldFormatterMigration() in the base class.

Return value

array The keys are D6 formatters and the values are D8 formatters.

Overrides FieldPluginBase::getFieldFormatterMap

File

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

Class

AddressField
Field migration plugin from D7 to D8.

Namespace

Drupal\address\Plugin\migrate\field

Code

public function getFieldFormatterMap() {
  return [
    'addressfield_default' => 'address_default',
  ];
}