function Condition::where

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

Overrides ConditionInterface::where

1 call to Condition::where()
Condition::alwaysFalse in core/lib/Drupal/Core/Database/Query/Condition.php
Sets a condition that is always false.

File

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

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.