comparison core/modules/user/src/Plugin/migrate/User.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 1fec387a4317
children af1871eacc83
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
35 if (!isset($this->fieldPluginCache[$field_type])) { 35 if (!isset($this->fieldPluginCache[$field_type])) {
36 $this->fieldPluginCache[$field_type] = $this->fieldPluginManager->createInstance($field_type, [], $this); 36 $this->fieldPluginCache[$field_type] = $this->fieldPluginManager->createInstance($field_type, [], $this);
37 } 37 }
38 $info = $row->getSource(); 38 $info = $row->getSource();
39 $this->fieldPluginCache[$field_type] 39 $this->fieldPluginCache[$field_type]
40 ->processFieldValues($this, $field_name, $info); 40 ->defineValueProcessPipeline($this, $field_name, $info);
41 } 41 }
42 else { 42 else {
43 if ($this->cckPluginManager->hasDefinition($field_type)) { 43 if ($this->cckPluginManager->hasDefinition($field_type)) {
44 if (!isset($this->cckPluginCache[$field_type])) { 44 if (!isset($this->cckPluginCache[$field_type])) {
45 $this->cckPluginCache[$field_type] = $this->cckPluginManager->createInstance($field_type, [], $this); 45 $this->cckPluginCache[$field_type] = $this->cckPluginManager->createInstance($field_type, [], $this);