public function DatabaseStorage::set

public DatabaseStorage::set($key, $value)

Saves a value for a given key.

Parameters

string $key: The key of the data to store.

mixed $value: The data to store.

Overrides KeyValueStoreInterface::set

File

core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php, line 109

Class

DatabaseStorage
Defines a default key/value store implementation.

Namespace

Drupal\Core\KeyValueStore

Code

public function set($key, $value) {
  $this->connection->merge($this->table)
    ->keys(array(
      'name' => $key,
      'collection' => $this->collection,
    ))
    ->fields(array('value' => $this->serializer->encode($value)))
    ->execute();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!KeyValueStore!DatabaseStorage.php/function/DatabaseStorage::set/8.1.x