You are here

protected function MigrateExecutable::getIdMap in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/MigrateExecutable.php \Drupal\migrate\MigrateExecutable::getIdMap()

Get the ID map from the current migration.

Return value

\Drupal\migrate\Plugin\MigrateIdMapInterface The ID map.

3 calls to MigrateExecutable::getIdMap()
MigrateExecutable::import in core/modules/migrate/src/MigrateExecutable.php
Performs an import operation - migrate items from source to destination.
MigrateExecutable::rollback in core/modules/migrate/src/MigrateExecutable.php
Performs a rollback operation - remove previously-imported items.
TestMigrateExecutable::getIdMap in core/modules/migrate/tests/src/Kernel/TestMigrateExecutable.php
Get the ID map from the current migration.
1 method overrides MigrateExecutable::getIdMap()
TestMigrateExecutable::getIdMap in core/modules/migrate/tests/src/Kernel/TestMigrateExecutable.php
Get the ID map from the current migration.

File

core/modules/migrate/src/MigrateExecutable.php, line 362

Class

MigrateExecutable
Defines a migrate executable class.

Namespace

Drupal\migrate

Code

protected function getIdMap() {
  return $this->migration
    ->getIdMap();
}