function DatabaseStorage::setIfNotExists
Same name in other branches
- 9 core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php \Drupal\Core\KeyValueStore\DatabaseStorage::setIfNotExists()
- 8.9.x core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php \Drupal\Core\KeyValueStore\DatabaseStorage::setIfNotExists()
- 10 core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php \Drupal\Core\KeyValueStore\DatabaseStorage::setIfNotExists()
Overrides KeyValueStoreInterface::setIfNotExists
File
-
core/
lib/ Drupal/ Core/ KeyValueStore/ DatabaseStorage.php, line 186
Class
- DatabaseStorage
- Defines a default key/value store implementation.
Namespace
Drupal\Core\KeyValueStoreCode
public function setIfNotExists($key, $value) {
try {
return $this->doSetIfNotExists($key, $value);
} catch (\Exception $e) {
// If there was an exception, try to create the table.
if ($this->ensureTableExists()) {
return $this->doSetIfNotExists($key, $value);
}
else {
throw $e;
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.