public function Sql::getRowBySource in Drupal 9
Same name and namespace in other branches
- 8 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 527
Class
- Sql
- Defines the sql based ID map implementation.
Namespace
Drupal\migrate\Plugin\migrate\id_mapCode
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();
}