You are here

protected function StringDatabaseStorage::dbDelete in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/locale/src/StringDatabaseStorage.php \Drupal\locale\StringDatabaseStorage::dbDelete()
  2. 10 core/modules/locale/src/StringDatabaseStorage.php \Drupal\locale\StringDatabaseStorage::dbDelete()

Creates delete query.

Parameters

string $table: The table name.

array $keys: Array with object keys indexed by field name.

Return value

\Drupal\Core\Database\Query\Delete Returns a new Delete object for the injected database connection.

File

core/modules/locale/src/StringDatabaseStorage.php, line 526

Class

StringDatabaseStorage
Defines a class to store localized strings in the database.

Namespace

Drupal\locale

Code

protected function dbDelete($table, $keys) {
  $query = $this->connection
    ->delete($table, $this->options);
  foreach ($keys as $field => $value) {
    $query
      ->condition($field, $value);
  }
  return $query;
}