function Condition::where
Same name in other branches
- 9 core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition::where()
- 10 core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition::where()
- 11.x 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 122
Class
- Condition
- Generic class for a series of conditions in a query.
Namespace
Drupal\Core\Database\QueryCode
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.