function SourcePluginBase::doCount
Same name in other branches
- 8.9.x core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::doCount()
- 10 core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::doCount()
- 11.x core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::doCount()
Gets the source count.
Checks if the source is countable or using the iterator_count function.
Return value
int
1 call to SourcePluginBase::doCount()
- SourcePluginBase::count in core/
modules/ migrate/ src/ Plugin/ migrate/ source/ SourcePluginBase.php - Gets the source count.
4 methods override SourcePluginBase::doCount()
- CacheableEmbeddedDataSource::doCount in core/
modules/ migrate/ tests/ modules/ migrate_cache_counts_test/ src/ Plugin/ migrate/ source/ CacheableEmbeddedDataSource.php - Gets the source count.
- ContentEntity::doCount in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ ContentEntity.php - Gets the source count.
- EmptySource::doCount in core/
modules/ migrate/ src/ Plugin/ migrate/ source/ EmptySource.php - Gets the source count.
- SqlBase::doCount in core/
modules/ migrate/ src/ Plugin/ migrate/ source/ SqlBase.php - Gets the source count using countQuery().
File
-
core/
modules/ migrate/ src/ Plugin/ migrate/ source/ SourcePluginBase.php, line 537
Class
- SourcePluginBase
- The base class for source plugins.
Namespace
Drupal\migrate\Plugin\migrate\sourceCode
protected function doCount() {
$iterator = $this->getIterator();
return $iterator instanceof \Countable ? $iterator->count() : iterator_count($this->initializeIterator());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.