You are here

public function DatabaseStorage::set in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php \Drupal\Core\KeyValueStore\DatabaseStorage::set()

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 142

Class

DatabaseStorage
Defines a default key/value store implementation.

Namespace

Drupal\Core\KeyValueStore

Code

public function set($key, $value) {
  try {
    $this
      ->doSet($key, $value);
  } catch (\Exception $e) {

    // If there was an exception, try to create the table.
    if ($this
      ->ensureTableExists()) {
      $this
        ->doSet($key, $value);
    }
    else {
      throw $e;
    }
  }
}