You are here

public function Sql::getRowBySource in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::getRowBySource()
  2. 9 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::getRowBySource()

Retrieves a row from the map table based on source identifier values.

Parameters

array $source_id_values: The source identifier keyed values of the record, e.g. ['nid' => 5].

Return value

array The raw row data as an associative array.

Overrides MigrateIdMapInterface::getRowBySource

File

core/modules/migrate/src/Plugin/migrate/id_map/Sql.php, line 530

Class

Sql
Defines the sql based ID map implementation.

Namespace

Drupal\migrate\Plugin\migrate\id_map

Code

public function getRowBySource(array $source_id_values) {
  $query = $this
    ->getDatabase()
    ->select($this
    ->mapTableName(), 'map')
    ->fields('map');
  $query
    ->condition($this::SOURCE_IDS_HASH, $this
    ->getSourceIdsHash($source_id_values));
  $result = $query
    ->execute();
  return $result
    ->fetchAssoc();
}