MemoryStorage.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/lib/Drupal/Core/Config/MemoryStorage.php
- 8.9.x core/lib/Drupal/Core/KeyValueStore/MemoryStorage.php
- 10 core/lib/Drupal/Core/Config/MemoryStorage.php
- 10 core/lib/Drupal/Core/KeyValueStore/MemoryStorage.php
- 11.x core/lib/Drupal/Core/Config/MemoryStorage.php
- 11.x core/lib/Drupal/Core/KeyValueStore/MemoryStorage.php
Namespace
Drupal\Core\KeyValueStoreFile
-
core/
lib/ Drupal/ Core/ KeyValueStore/ MemoryStorage.php
View source
<?php
namespace Drupal\Core\KeyValueStore;
/**
* Defines a default key/value store implementation.
*/
class MemoryStorage extends StorageBase {
/**
* The actual storage of key-value pairs.
*
* @var array
*/
protected $data = [];
/**
* {@inheritdoc}
*/
public function has($key) {
return array_key_exists($key, $this->data);
}
/**
* {@inheritdoc}
*/
public function get($key, $default = NULL) {
return array_key_exists($key, $this->data) ? $this->data[$key] : $default;
}
/**
* {@inheritdoc}
*/
public function getMultiple(array $keys) {
return array_intersect_key($this->data, array_flip($keys));
}
/**
* {@inheritdoc}
*/
public function getAll() {
return $this->data;
}
/**
* {@inheritdoc}
*/
public function set($key, $value) {
$this->data[$key] = $value;
}
/**
* {@inheritdoc}
*/
public function setIfNotExists($key, $value) {
if (!isset($this->data[$key])) {
$this->data[$key] = $value;
return TRUE;
}
return FALSE;
}
/**
* {@inheritdoc}
*/
public function setMultiple(array $data) {
$this->data = $data + $this->data;
}
/**
* {@inheritdoc}
*/
public function rename($key, $new_key) {
if ($key !== $new_key) {
$this->data[$new_key] = $this->data[$key];
unset($this->data[$key]);
}
}
/**
* {@inheritdoc}
*/
public function delete($key) {
unset($this->data[$key]);
}
/**
* {@inheritdoc}
*/
public function deleteMultiple(array $keys) {
foreach ($keys as $key) {
unset($this->data[$key]);
}
}
/**
* {@inheritdoc}
*/
public function deleteAll() {
$this->data = [];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
MemoryStorage | Defines a default key/value store implementation. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.