KeyValueDatabaseExpirableFactory::get

public KeyValueDatabaseExpirableFactory::get($collection)

Constructs a new expirable key/value store for a given collection name.

Parameters

string $collection: The name of the collection holding key and value pairs.

Return value

\Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface An expirable key/value store implementation for the given $collection.

Overrides KeyValueExpirableFactoryInterface::get

File

core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseExpirableFactory.php, line 50

Class

KeyValueDatabaseExpirableFactory
Defines the key/value store factory for the database backend.

Namespace

Drupal\Core\KeyValueStore

Code

public function get($collection) {
  if (!isset($this->storages[$collection])) {
    $this->storages[$collection] = new DatabaseStorageExpirable($collection, $this->serializer, $this->connection);
  }
  return $this->storages[$collection];
}
doc_Drupal
2016-10-29 09:21:40
Comments
Leave a Comment

Please login to continue.