function Condition::where

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition::where()
  2. 10 core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition::where()
  3. 8.9.x core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition::where()

File

core/lib/Drupal/Core/Database/Query/Condition.php, line 134

Class

Condition
Generic class for a series of conditions in a query.

Namespace

Drupal\Core\Database\Query

Code

public function where($snippet, $args = []) {
  $this->conditions[] = [
    'field' => $snippet,
    'value' => $args,
    'operator' => NULL,
  ];
  $this->changed = TRUE;
  return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.