class KeyValueMemoryFactory
Same name in other branches
- 9 core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php \Drupal\Core\KeyValueStore\KeyValueMemoryFactory
- 10 core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php \Drupal\Core\KeyValueStore\KeyValueMemoryFactory
- 11.x core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php \Drupal\Core\KeyValueStore\KeyValueMemoryFactory
Defines the key/value store factory for the memory backend.
Hierarchy
- class \Drupal\Core\KeyValueStore\KeyValueMemoryFactory implements \Drupal\Core\KeyValueStore\KeyValueFactoryInterface
Expanded class hierarchy of KeyValueMemoryFactory
5 files declare their use of KeyValueMemoryFactory
- KernelTestBase.php in core/
modules/ simpletest/ src/ KernelTestBase.php - MatcherDumperTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Routing/ MatcherDumperTest.php - RendererBubblingTest.php in core/
tests/ Drupal/ Tests/ Core/ Render/ RendererBubblingTest.php - Contains \Drupal\Tests\Core\Render\RendererBubblingTest.
- RouteProviderTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Routing/ RouteProviderTest.php - Contains \Drupal\KernelTests\Core\Routing\RouteProviderTest.
- ThemeExtensionListTest.php in core/
tests/ Drupal/ Tests/ Core/ Extension/ ThemeExtensionListTest.php
File
-
core/
lib/ Drupal/ Core/ KeyValueStore/ KeyValueMemoryFactory.php, line 8
Namespace
Drupal\Core\KeyValueStoreView source
class KeyValueMemoryFactory implements KeyValueFactoryInterface {
/**
* An array of keyvalue collections that are stored in memory.
*
* @var array
*/
protected $collections = [];
/**
* {@inheritdoc}
*/
public function get($collection) {
if (!isset($this->collections[$collection])) {
$this->collections[$collection] = new MemoryStorage($collection);
}
return $this->collections[$collection];
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
KeyValueMemoryFactory::$collections | protected | property | An array of keyvalue collections that are stored in memory. | |
KeyValueMemoryFactory::get | public | function | Constructs a new key/value store for a given collection name. | Overrides KeyValueFactoryInterface::get |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.