public function MigrateExecutable::getUpdatedCount in Migrate Tools 8.4
Same name and namespace in other branches
- 8.5 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getUpdatedCount()
- 8 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getUpdatedCount()
- 8.2 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getUpdatedCount()
- 8.3 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getUpdatedCount()
Return the number of items updated.
Return value
int The updated count.
1 call to MigrateExecutable::getUpdatedCount()
- MigrateExecutable::progressMessage in src/
MigrateExecutable.php - Emit information on what we've done.
File
- src/
MigrateExecutable.php, line 170
Class
- MigrateExecutable
- Defines a migrate executable class for drush.
Namespace
Drupal\migrate_toolsCode
public function getUpdatedCount() {
return $this->saveCounters[MigrateIdMapInterface::STATUS_NEEDS_UPDATE];
}