You are here

public function MigrateExecutable::getCreatedCount in Migrate Tools 8.5

Same name and namespace in other branches
  1. 8 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getCreatedCount()
  2. 8.2 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getCreatedCount()
  3. 8.3 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getCreatedCount()
  4. 8.4 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getCreatedCount()

Return the number of items created.

Return value

int The number of items created.

1 call to MigrateExecutable::getCreatedCount()
MigrateExecutable::progressMessage in src/MigrateExecutable.php
Emit information on what we've done.

File

src/MigrateExecutable.php, line 162

Class

MigrateExecutable
Defines a migrate executable class for drush.

Namespace

Drupal\migrate_tools

Code

public function getCreatedCount() {
  return $this->saveCounters[MigrateIdMapInterface::STATUS_IMPORTED];
}