You are here

class DatabaseBackendFactory in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Cache/DatabaseBackendFactory.php \Drupal\Core\Cache\DatabaseBackendFactory

Hierarchy

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
cache.backend.database in core/core.services.yml
Drupal\Core\Cache\DatabaseBackendFactory

File

core/lib/Drupal/Core/Cache/DatabaseBackendFactory.php, line 12
Contains \Drupal\Core\Cache\DatabaseBackendFactory.

Namespace

Drupal\Core\Cache
View 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

Namesort descending Modifiers Type Description Overrides
DatabaseBackendFactory::$checksumProvider protected property The cache tags checksum provider.
DatabaseBackendFactory::$connection protected property The database connection.
DatabaseBackendFactory::get function Gets DatabaseBackend for the specified cache bin. Overrides CacheFactoryInterface::get
DatabaseBackendFactory::__construct function Constructs the DatabaseBackendFactory object.