CacheableEmbeddedDataSource.php in Drupal 10
Same filename and directory in other branches
File
core/modules/migrate/tests/modules/migrate_cache_counts_test/src/Plugin/migrate/source/CacheableEmbeddedDataSource.phpView source
<?php
namespace Drupal\migrate_cache_counts_test\Plugin\migrate\source;
use Drupal\migrate\Plugin\migrate\source\EmbeddedDataSource;
use Drupal\migrate\Plugin\migrate\source\SourcePluginBase;
/**
* A copy of embedded_data which allows caching the count.
*
* @MigrateSource(
* id = "cacheable_embedded_data",
* source_module = "migrate"
* )
*/
class CacheableEmbeddedDataSource extends EmbeddedDataSource {
/**
* {@inheritdoc}
*/
#[\ReturnTypeWillChange]
public function count($refresh = FALSE) {
return SourcePluginBase::count($refresh);
}
/**
* {@inheritdoc}
*/
protected function doCount() {
return parent::count(TRUE);
}
}
Classes
Name | Description |
---|---|
CacheableEmbeddedDataSource | A copy of embedded_data which allows caching the count. |