ConditionInterface.php

Same filename in this branch
  1. 8.9.x core/lib/Drupal/Core/Database/Query/ConditionInterface.php
  2. 8.9.x core/lib/Drupal/Core/Condition/ConditionInterface.php
Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Database/Query/ConditionInterface.php
  2. 9 core/lib/Drupal/Core/Entity/Query/ConditionInterface.php
  3. 9 core/lib/Drupal/Core/Condition/ConditionInterface.php
  4. 10 core/lib/Drupal/Core/Database/Query/ConditionInterface.php
  5. 10 core/lib/Drupal/Core/Entity/Query/ConditionInterface.php
  6. 10 core/lib/Drupal/Core/Condition/ConditionInterface.php
  7. 11.x core/lib/Drupal/Core/Database/Query/ConditionInterface.php
  8. 11.x core/lib/Drupal/Core/Entity/Query/ConditionInterface.php
  9. 11.x core/lib/Drupal/Core/Condition/ConditionInterface.php

Namespace

Drupal\Core\Entity\Query

File

core/lib/Drupal/Core/Entity/Query/ConditionInterface.php

View source
<?php

namespace Drupal\Core\Entity\Query;


/**
 * Defines the entity query condition interface.
 */
interface ConditionInterface {
    
    /**
     * Gets the current conjunction.
     *
     * @return string
     *   Can be AND or OR.
     */
    public function getConjunction();
    
    /**
     * Implements \Countable::count().
     *
     * Returns the size of this conditional. The size of the conditional is the
     * size of its conditional array.
     */
    public function count();
    
    /**
     * Adds a condition.
     *
     * @param string|\Drupal\Core\Entity\Query\ConditionInterface $field
     * @param mixed $value
     * @param string $operator
     * @param string $langcode
     *
     * @return $this
     *
     * @see \Drupal\Core\Entity\Query\QueryInterface::condition()
     */
    public function condition($field, $value = NULL, $operator = NULL, $langcode = NULL);
    
    /**
     * Queries for the existence of a field.
     *
     * @param string $field
     * @param string $langcode
     *
     * @return $this
     *
     * @see \Drupal\Core\Entity\Query\QueryInterface::exists()
     */
    public function exists($field, $langcode = NULL);
    
    /**
     * Queries for the nonexistence of a field.
     *
     * @param string $field
     * @param string $langcode
     *
     * @return $this
     *
     * @see \Drupal\Core\Entity\Query\QueryInterface::notExists()
     */
    public function notExists($field, $langcode = NULL);
    
    /**
     * 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 array
     */
    public function &conditions();
    
    /**
     * Compiles this conditional clause.
     *
     * @param $query
     *   The query object this conditional clause belongs to.
     */
    public function compile($query);

}

Interfaces

Title Deprecated Summary
ConditionInterface Defines the entity query condition interface.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.