You are here

protected function MigrateExecutable::getIdMap in Migrate Tools 8.4

Same name and namespace in other branches
  1. 8.5 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getIdMap()

Get the ID map from the current migration.

Return value

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

Overrides MigrateExecutable::getIdMap

File

src/MigrateExecutable.php, line 402

Class

MigrateExecutable
Defines a migrate executable class for drush.

Namespace

Drupal\migrate_tools

Code

protected function getIdMap() {
  return new IdMapFilter(parent::getIdMap(), $this->idlist);
}