function Condition::exists
Queries for the existence of a field.
Parameters
string $field: The field to query for existence.
string $langcode: (optional) For which language the entity should be prepared, defaults to the current content language.
Return value
$this
Overrides ConditionInterface::exists
File
-
core/
lib/ Drupal/ Core/ Config/ Entity/ Query/ Condition.php, line 88
Class
- Condition
- Defines the condition class for the config entity query.
Namespace
Drupal\Core\Config\Entity\QueryCode
public function exists($field, $langcode = NULL) {
return $this->condition($field, NULL, 'IS NOT NULL', $langcode);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.