public function MediaEntityGeneratorTaxonomyD7::count in Migrate File Entities to Media Entities 8
Gets the source count.
Return a count of available source records, from the cache if appropriate. Returns -1 if the source is not countable.
Parameters
bool $refresh: (optional) Whether or not to refresh the count. Defaults to FALSE. Not all implementations support the reset flag. In such instances this parameter is ignored and the result of calling the method will always be up to date.
Return value
int The count.
Overrides SqlBase::count
File
- src/
Plugin/ migrate/ source/ MediaEntityGeneratorTaxonomyD7.php, line 118
Class
- MediaEntityGeneratorTaxonomyD7
- Returns bare-bones information about every available file entity.
Namespace
Drupal\migrate_file_to_media\Plugin\migrate\sourceCode
public function count($refresh = FALSE) {
return $this
->initializeIterator()
->count();
}