function 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 784
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,
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.