protected function SourcePluginBase::doCount in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::doCount()
Gets the source count checking 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.
1 method overrides SourcePluginBase::doCount()
- ContentEntity::doCount in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ ContentEntity.php - Gets the source count checking if the source is countable or using the iterator_count function.
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ source/ SourcePluginBase.php, line 499
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());
}