public function MigrateExecutable::getCreatedCount in Migrate Tools 8
Same name and namespace in other branches
- 8.5 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getCreatedCount()
- 8.2 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getCreatedCount()
- 8.3 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getCreatedCount()
- 8.4 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getCreatedCount()
Return the number of items created.
Return value
int
1 call to MigrateExecutable::getCreatedCount()
- MigrateExecutable::progressMessage in src/
MigrateExecutable.php - Emit information on what we've done since the last feedback (or the beginning of this migration).
File
- src/
MigrateExecutable.php, line 144 - Contains \Drupal\migrate_tools\MigrateExecutable.
Class
Namespace
Drupal\migrate_toolsCode
public function getCreatedCount() {
return $this->saveCounters[MigrateIdMapInterface::STATUS_IMPORTED];
}