Condition::orConditionGroup

public Condition::orConditionGroup() Creates a new group of conditions ORed together. Return value \Drupal\Core\Database\Query\ConditionInterface Overrides ConditionInterface::orConditionGroup File core/lib/Drupal/Core/Database/Query/Condition.php, line 352 Class Condition Generic class for a series of conditions in a query. Namespace Drupal\Core\Database\Query Code public function orConditionGroup() { return $this->conditionGroupFactory('OR'); }

Condition::notExists

public Condition::notExists($field, $langcode = NULL) Queries for the existence of a field. Parameters string $field: Return value ConditionInterface; Overrides ConditionInterface::notExists See also \Drupal\Core\Entity\Query\QueryInterface::notexists() File core/lib/Drupal/Core/Entity/Query/Sql/Condition.php, line 69 Class Condition Implements entity query conditions for SQL databases. Namespace Drupal\Core\Entity\Query\Sql Code public function notExists($field, $langcode = NULL) {

Condition::notExists

public Condition::notExists($field, $langcode = NULL) Queries for the existence of a field. Parameters string $field: Return value ConditionInterface; Overrides ConditionInterface::notExists See also \Drupal\Core\Entity\Query\QueryInterface::notexists() File core/lib/Drupal/Core/Config/Entity/Query/Condition.php, line 93 Class Condition Defines the condition class for the config entity query. Namespace Drupal\Core\Config\Entity\Query Code public function notExists($field, $langcode

Condition::notExists

public Condition::notExists($field, $langcode = NULL) Queries for the existence of a field. Parameters string $field: Return value ConditionInterface; Overrides ConditionInterface::notExists See also \Drupal\Core\Entity\Query\QueryInterface::notexists() File core/lib/Drupal/Core/Entity/Query/Null/Condition.php, line 28 Class Condition Defines the condition class for the null entity query. Namespace Drupal\Core\Entity\Query\Null Code public function notExists($field, $langcode = NULL

Condition::notExists

public Condition::notExists(SelectInterface $select) Sets a condition that the specified subquery returns no values. Parameters \Drupal\Core\Database\Query\SelectInterface $select: The subquery that must not contain results. Return value \Drupal\Core\Database\Query\ConditionInterface The called object. Overrides ConditionInterface::notExists File core/lib/Drupal/Core/Database/Query/Condition.php, line 123 Class Condition Generic class for a series of conditions in a query. Namespace D

Condition::matchArray

protected Condition::matchArray(array $condition, array $data, array $needs_matching, array $parents = array()) Matches for an array representing one or more config paths. Parameters array $condition: The condition array as created by the condition() method. array $data: The config array or part of it. array $needs_matching: The list of config array keys needing a match. Can contain config keys and the * wildcard. array $parents: The current list of parents. Return value bool TRUE when the co

Condition::match

protected Condition::match(array $condition, $value) Perform the actual matching. Parameters array $condition: The condition array as created by the condition() method. string $value: The value to match against. Return value bool TRUE when matches else FALSE. File core/lib/Drupal/Core/Config/Entity/Query/Condition.php, line 156 Class Condition Defines the condition class for the config entity query. Namespace Drupal\Core\Config\Entity\Query Code protected function match(array $condit

Condition::mapConditionOperator

protected Condition::mapConditionOperator($operator) Gets any special processing requirements for the condition operator. Some condition types require special processing, such as IN, because the value data they pass in is not a simple value. This is a simple overridable lookup function. Parameters $operator: The condition operator, such as "IN", "BETWEEN", etc. Case-sensitive. Return value array The extra handling directives for the specified operator or an empty array if there are no extra h

Condition::isNull

public Condition::isNull($field) Sets a condition that the specified field be NULL. Parameters $field: The name of the field to check. Return value \Drupal\Core\Database\Query\ConditionInterface The called object. Overrides ConditionInterface::isNull File core/lib/Drupal/Core/Database/Query/Condition.php, line 102 Class Condition Generic class for a series of conditions in a query. Namespace Drupal\Core\Database\Query Code public function isNull($field) { return $this->condition

Condition::isNotNull

public Condition::isNotNull($field) Sets a condition that the specified field be NOT NULL. Parameters $field: The name of the field to check. Return value \Drupal\Core\Database\Query\ConditionInterface The called object. Overrides ConditionInterface::isNotNull File core/lib/Drupal/Core/Database/Query/Condition.php, line 109 Class Condition Generic class for a series of conditions in a query. Namespace Drupal\Core\Database\Query Code public function isNotNull($field) { return $this-