public function Sql::processedCount in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 603 - Contains \Drupal\migrate\Plugin\migrate\id_map\Sql.
Class
- Sql
- Defines the sql based ID map implementation.
Namespace
Drupal\migrate\Plugin\migrate\id_mapCode
public function processedCount() {
return $this
->getDatabase()
->select($this
->mapTableName())
->countQuery()
->execute()
->fetchField();
}