You are here

public function Condition::exists in Drupal 10

Same name in this branch
  1. 10 core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition::exists()
  2. 10 core/lib/Drupal/Core/Config/Entity/Query/Condition.php \Drupal\Core\Config\Entity\Query\Condition::exists()
  3. 10 core/lib/Drupal/Core/Entity/Query/Sql/Condition.php \Drupal\Core\Entity\Query\Sql\Condition::exists()
  4. 10 core/lib/Drupal/Core/Entity/Query/Null/Condition.php \Drupal\Core\Entity\Query\Null\Condition::exists()
Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Query/Null/Condition.php \Drupal\Core\Entity\Query\Null\Condition::exists()
  2. 9 core/lib/Drupal/Core/Entity/Query/Null/Condition.php \Drupal\Core\Entity\Query\Null\Condition::exists()

File

core/lib/Drupal/Core/Entity/Query/Null/Condition.php, line 21

Class

Condition
Defines the condition class for the null entity query.

Namespace

Drupal\Core\Entity\Query\Null

Code

public function exists($field, $langcode = NULL) {
  return $this
    ->condition($field, NULL, 'IS NOT NULL', $langcode);
}