Same name and namespace in other branches
  1. 8.9.x core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::currentDestination()
  2. 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 958

Class

Sql

Namespace

Drupal\migrate\Plugin\migrate\id_map

Code

public function currentDestination() {
  if ($this
    ->valid()) {
    $result = [];
    foreach ($this
      ->destinationIdFields() as $destination_field_name => $id_map_field_name) {
      if (!is_null($this->currentRow[$id_map_field_name])) {
        $result[$destination_field_name] = $this->currentRow[$id_map_field_name];
      }
    }
    return $result;
  }
  else {
    return NULL;
  }
}