public function MigrateExecutable::getIgnoredCount in Migrate Tools 8.3
Same name and namespace in other branches
- 8.5 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getIgnoredCount()
- 8 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getIgnoredCount()
- 8.2 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getIgnoredCount()
- 8.4 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getIgnoredCount()
Return the number of items ignored.
Return value
int
1 call to MigrateExecutable::getIgnoredCount()
- 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 169
Class
Namespace
Drupal\migrate_toolsCode
public function getIgnoredCount() {
return $this->saveCounters[MigrateIdMapInterface::STATUS_IGNORED];
}