You are here

public function DatabaseStorage::delete in Drupal 9

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

Implements Drupal\Core\Config\StorageInterface::delete().

@todo Ignore replica targets for data manipulation operations.

Throws

PDOException

Overrides StorageInterface::delete

File

core/lib/Drupal/Core/Config/DatabaseStorage.php, line 223

Class

DatabaseStorage
Defines the Database storage.

Namespace

Drupal\Core\Config

Code

public function delete($name) {
  $options = [
    'return' => Database::RETURN_AFFECTED,
  ] + $this->options;
  return (bool) $this->connection
    ->delete($this->table, $options)
    ->condition('collection', $this->collection)
    ->condition('name', $name)
    ->execute();
}