public function VideoEmbedField::getFieldType in Video Embed Field 8
Computes the destination type of a migrated field.
Parameters
\Drupal\migrate\Row $row: The field being migrated.
Return value
string The destination field type.
Overrides FieldPluginBase::getFieldType
File
- src/
Plugin/ migrate/ cckfield/ VideoEmbedField.php, line 24
Class
- VideoEmbedField
- Plugin to migrate from the Drupal 7 video_embed_field module.
Namespace
Drupal\video_embed_field\Plugin\migrate\cckfieldCode
public function getFieldType(Row $row) {
return 'video_embed_field';
}