You are here

public function KeyValueMemoryFactory::get in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php \Drupal\Core\KeyValueStore\KeyValueMemoryFactory::get()
  2. 10 core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php \Drupal\Core\KeyValueStore\KeyValueMemoryFactory::get()

Constructs a new 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\KeyValueStoreInterface A key/value store implementation for the given $collection.

Overrides KeyValueFactoryInterface::get

File

core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php, line 20

Class

KeyValueMemoryFactory
Defines the key/value store factory for the memory backend.

Namespace

Drupal\Core\KeyValueStore

Code

public function get($collection) {
  if (!isset($this->collections[$collection])) {
    $this->collections[$collection] = new MemoryStorage($collection);
  }
  return $this->collections[$collection];
}