public function Sql::currentDestination in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::currentDestination()
 
Looks up the destination identifier currently being iterated.
Return value
array The destination identifier values of the record, or NULL on failure.
Overrides MigrateIdMapInterface::currentDestination
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php, line 909  
Class
- Sql
 - Defines the sql based ID map implementation.
 
Namespace
Drupal\migrate\Plugin\migrate\id_mapCode
public function currentDestination() {
  if ($this
    ->valid()) {
    $result = [];
    foreach ($this
      ->destinationIdFields() as $destination_field_name => $idmap_field_name) {
      if (!is_null($this->currentRow[$idmap_field_name])) {
        $result[$destination_field_name] = $this->currentRow[$idmap_field_name];
      }
    }
    return $result;
  }
  else {
    return NULL;
  }
}