comparison core/modules/node/src/Plugin/migrate/D7NodeDeriver.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children af1871eacc83
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
166 $plugin_id = $this->fieldPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration); 166 $plugin_id = $this->fieldPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration);
167 if (!isset($this->fieldPluginCache[$field_type])) { 167 if (!isset($this->fieldPluginCache[$field_type])) {
168 $this->fieldPluginCache[$field_type] = $this->fieldPluginManager->createInstance($plugin_id, ['core' => 7], $migration); 168 $this->fieldPluginCache[$field_type] = $this->fieldPluginManager->createInstance($plugin_id, ['core' => 7], $migration);
169 } 169 }
170 $this->fieldPluginCache[$field_type] 170 $this->fieldPluginCache[$field_type]
171 ->processFieldValues($migration, $field_name, $info); 171 ->defineValueProcessPipeline($migration, $field_name, $info);
172 } 172 }
173 catch (PluginNotFoundException $ex) { 173 catch (PluginNotFoundException $ex) {
174 try { 174 try {
175 $plugin_id = $this->cckPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration); 175 $plugin_id = $this->cckPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration);
176 if (!isset($this->cckPluginCache[$field_type])) { 176 if (!isset($this->cckPluginCache[$field_type])) {