Same name and namespace in other branches
  1. 8.9.x core/modules/migrate/src/Plugin/MigrateIdMapInterface.php \Drupal\migrate\Plugin\MigrateIdMapInterface::lookupDestinationIds()
  2. 9 core/modules/migrate/src/Plugin/MigrateIdMapInterface.php \Drupal\migrate\Plugin\MigrateIdMapInterface::lookupDestinationIds()

Looks up the destination identifiers corresponding to a source key.

This can look up a subset of source keys if only some are provided, and will return all destination keys that match.

Parameters

array $source_id_values: The source identifier keyed values of the records, e.g. ['nid' => 5]. If un-keyed, the first count($source_id_values) keys will be assumed.

Return value

array An array of arrays of destination identifier values.

Throws

\Drupal\migrate\MigrateException Thrown when $source_id_values contains unknown keys, or is the wrong length.

2 methods override MigrateIdMapInterface::lookupDestinationIds()
NullIdMap::lookupDestinationIds in core/modules/migrate/src/Plugin/migrate/id_map/NullIdMap.php
Looks up the destination identifiers corresponding to a source key.
Sql::lookupDestinationIds in core/modules/migrate/src/Plugin/migrate/id_map/Sql.php
Looks up the destination identifiers corresponding to a source key.

File

core/modules/migrate/src/Plugin/MigrateIdMapInterface.php, line 263

Class

MigrateIdMapInterface
Defines an interface for migrate ID mappings.

Namespace

Drupal\migrate\Plugin

Code

public function lookupDestinationIds(array $source_id_values);