class DatabaseBackendFactory in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Cache/DatabaseBackendFactory.php \Drupal\Core\Cache\DatabaseBackendFactory
Hierarchy
- class \Drupal\Core\Cache\DatabaseBackendFactory implements CacheFactoryInterface
Expanded class hierarchy of DatabaseBackendFactory
1 string reference to 'DatabaseBackendFactory'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses DatabaseBackendFactory
File
- core/
lib/ Drupal/ Core/ Cache/ DatabaseBackendFactory.php, line 12 - Contains \Drupal\Core\Cache\DatabaseBackendFactory.
Namespace
Drupal\Core\CacheView source
class DatabaseBackendFactory implements CacheFactoryInterface {
/**
* The database connection.
*
* @var \Drupal\Core\Database\Connection
*/
protected $connection;
/**
* The cache tags checksum provider.
*
* @var \Drupal\Core\Cache\CacheTagsChecksumInterface
*/
protected $checksumProvider;
/**
* Constructs the DatabaseBackendFactory object.
*
* @param \Drupal\Core\Database\Connection $connection
* Database connection
* @param \Drupal\Core\Cache\CacheTagsChecksumInterface $checksum_provider
* The cache tags checksum provider.
*/
function __construct(Connection $connection, CacheTagsChecksumInterface $checksum_provider) {
$this->connection = $connection;
$this->checksumProvider = $checksum_provider;
}
/**
* Gets DatabaseBackend for the specified cache bin.
*
* @param $bin
* The cache bin for which the object is created.
*
* @return \Drupal\Core\Cache\DatabaseBackend
* The cache backend object for the specified cache bin.
*/
function get($bin) {
return new DatabaseBackend($this->connection, $this->checksumProvider, $bin);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DatabaseBackendFactory:: |
protected | property | The cache tags checksum provider. | |
DatabaseBackendFactory:: |
protected | property | The database connection. | |
DatabaseBackendFactory:: |
function |
Gets DatabaseBackend for the specified cache bin. Overrides CacheFactoryInterface:: |
||
DatabaseBackendFactory:: |
function | Constructs the DatabaseBackendFactory object. |