public function Sql::importedCount in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::importedCount()
Returns the number of imported items in the map.
Return value
int The number of imported items.
Overrides MigrateIdMapInterface::importedCount
File
- core/modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php, line 738 
Class
- Sql
- Defines the sql based ID map implementation.
Namespace
Drupal\migrate\Plugin\migrate\id_mapCode
public function importedCount() {
  return $this
    ->countHelper([
    MigrateIdMapInterface::STATUS_IMPORTED,
    MigrateIdMapInterface::STATUS_NEEDS_UPDATE,
  ]);
}