ConditionFundamentals::conditions

public &ConditionFundamentals::conditions() Gets a complete list of all conditions in this conditional clause. This method returns by reference. That allows alter hooks to access the data structure directly and manipulate it before it gets compiled. Return value array Overrides ConditionInterface::conditions File core/lib/Drupal/Core/Entity/Query/ConditionFundamentals.php, line 74 Class ConditionFundamentals Common code for all implementations of the entity query condition interfaces.

ConditionFundamentals::count

public ConditionFundamentals::count() Implements \Countable::count(). Returns the size of this conditional. The size of the conditional is the size of its conditional array minus one, because one element is the conjunction. Overrides ConditionInterface::count File core/lib/Drupal/Core/Entity/Query/ConditionFundamentals.php, line 67 Class ConditionFundamentals Common code for all implementations of the entity query condition interfaces. Namespace Drupal\Core\Entity\Query Code public fun

ConditionFundamentals::getConjunction

public ConditionFundamentals::getConjunction() Gets the current conjunction. Return value string Can be AND or OR. Overrides ConditionInterface::getConjunction File core/lib/Drupal/Core/Entity/Query/ConditionFundamentals.php, line 60 Class ConditionFundamentals Common code for all implementations of the entity query condition interfaces. Namespace Drupal\Core\Entity\Query Code public function getConjunction() { return $this->conjunction; }

ConditionFundamentals

Common code for all implementations of the entity query condition interfaces. Hierarchy class \Drupal\Core\Entity\Query\ConditionFundamentals File core/lib/Drupal/Core/Entity/Query/ConditionFundamentals.php, line 8 Namespace Drupal\Core\Entity\Query Members Name Modifiers Type Description ConditionFundamentals::$conditions protected property Array of conditions. ConditionFundamentals::$conjunction protected property The conjunction of this condition group. The va

ConditionBase::condition

public ConditionBase::condition($field, $value = NULL, $operator = NULL, $langcode = NULL) Adds a condition. Parameters string|\Drupal\Core\Entity\Query\ConditionInterface $field: mixed $value: string $operator: string $langcode: Return value ConditionInterface Overrides ConditionInterface::condition See also \Drupal\Core\Entity\Query\QueryInterface::condition() File core/lib/Drupal/Core/Entity/Query/ConditionBase.php, line 13 Class ConditionBase Defines a common base class for all enti

ConditionFundamentals::$conditions

Array of conditions. Type: array File core/lib/Drupal/Core/Entity/Query/ConditionFundamentals.php, line 15 Class ConditionFundamentals Common code for all implementations of the entity query condition interfaces. Namespace Drupal\Core\Entity\Query Code protected $conditions = array();

ConditionFundamentals::$query

The query this condition belongs to. Type: \Drupal\Core\Entity\Query\QueryInterface File core/lib/Drupal/Core/Entity/Query/ConditionFundamentals.php, line 32 Class ConditionFundamentals Common code for all implementations of the entity query condition interfaces. Namespace Drupal\Core\Entity\Query Code protected $query;

ConditionFundamentals::$conjunction

The conjunction of this condition group. The value is one of the following: AND (default) OR Type: string File core/lib/Drupal/Core/Entity/Query/ConditionFundamentals.php, line 25 Class ConditionFundamentals Common code for all implementations of the entity query condition interfaces. Namespace Drupal\Core\Entity\Query Code protected $conjunction;

ConditionAggregateInterface::notExists

public ConditionAggregateInterface::notExists($field, $function, $langcode = NULL) Queries for the nonexistence of a field. Parameters string $field: Return value ConditionInterface; See also \Drupal\Core\Entity\Query\QueryInterface::notexists() File core/lib/Drupal/Core/Entity/Query/ConditionAggregateInterface.php, line 50 Class ConditionAggregateInterface Defines aggregated entity query conditions. Namespace Drupal\Core\Entity\Query Code public function notExists($field, $function

ConditionAggregateInterface::exists

public ConditionAggregateInterface::exists($field, $function, $langcode = NULL) Queries for the existence of a field. Parameters $field: string $langcode: Return value ConditionInterface See also \Drupal\Core\Entity\Query\QueryInterface::exists() File core/lib/Drupal/Core/Entity/Query/ConditionAggregateInterface.php, line 41 Class ConditionAggregateInterface Defines aggregated entity query conditions. Namespace Drupal\Core\Entity\Query Code public function exists($field, $function,