public function UploadInstance::count in Drupal 8
Same name and namespace in other branches
- 9 core/modules/file/src/Plugin/migrate/source/d6/UploadInstance.php \Drupal\file\Plugin\migrate\source\d6\UploadInstance::count()
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 DummyQueryTrait::count
File
- core/
modules/ file/ src/ Plugin/ migrate/ source/ d6/ UploadInstance.php, line 81
Class
- UploadInstance
- Drupal 6 upload instance source from database.
Namespace
Drupal\file\Plugin\migrate\source\d6Code
public function count($refresh = FALSE) {
return count($this
->initializeIterator());
}