public function Delete::where

Implements Drupal\Core\Database\Query\ConditionInterface::where().

Overrides ConditionInterface::where

File

drupal/core/lib/Drupal/Core/Database/Query/Delete.php, line 109
Definition of Drupal\Core\Database\Query\Delete

Class

Delete
General class for an abstracted DELETE operation.

Namespace

Drupal\Core\Database\Query

Code

public function where($snippet, $args = array()) {
  $this->condition
    ->where($snippet, $args);
  return $this;
}