protected function MigrateExecutable::currentSourceIds in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/src/MigrateExecutable.php \Drupal\migrate\MigrateExecutable::currentSourceIds()
- 10 core/modules/migrate/src/MigrateExecutable.php \Drupal\migrate\MigrateExecutable::currentSourceIds()
Fetches the key array for the current source record.
Return value
array The current source IDs.
File
- core/
modules/ migrate/ src/ MigrateExecutable.php, line 430
Class
- MigrateExecutable
- Defines a migrate executable class.
Namespace
Drupal\migrateCode
protected function currentSourceIds() {
return $this
->getSource()
->getCurrentIds();
}