public function Sql::processedCount in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::processedCount()
- 9 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::processedCount()
Returns the number of processed items in the map.
Return value
int The count of records in the map table.
Overrides MigrateIdMapInterface::processedCount
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php, line 754
Class
- Sql
- Defines the sql based ID map implementation.
Namespace
Drupal\migrate\Plugin\migrate\id_mapCode
public function processedCount() {
return $this
->countHelper(NULL, $this
->mapTableName());
}