You are here

public function ViewField::getFieldWidgetMap in Viewfield 8.3

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/d7/ViewField.php, line 35

Class

ViewField
ViewField field migration.

Namespace

Drupal\viewfield\Plugin\migrate\field\d7

Code

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