diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/CckMigration.php b/core/modules/migrate_drupal/src/Plugin/migrate/CckMigration.php index 431ddad..017b7e7 100644 --- a/core/modules/migrate_drupal/src/Plugin/migrate/CckMigration.php +++ b/core/modules/migrate_drupal/src/Plugin/migrate/CckMigration.php @@ -106,12 +106,8 @@ public function getProcess() { $source_plugin = []; } } - - $field_type_property_name = !empty($this->pluginDefinition['cck_plugin_field_type_property_name']) ? - $this->pluginDefinition['cck_plugin_field_type_property_name'] : - 'type'; foreach ($source_plugin as $row) { - $field_type = $row->getSourceProperty($field_type_property_name); + $field_type = $row->getSourceProperty('type'); try { $plugin_id = $this->cckPluginManager->getPluginIdFromFieldType($field_type, [], $this); }