Skip to content
QueryConditionTrait.php 2.25 KiB
Newer Older
<?php

/**
 * @file
 * Contains \Drupal\Core\Database\Query\QueryConditionTrait.
 */

namespace Drupal\Core\Database\Query;

use Drupal\Core\Database\Connection;

/**
 * Provides an implementation of ConditionInterface.
 *
 * @see \Drupal\Core\Database\Query\ConditionInterface
 */
trait QueryConditionTrait {

  /**
   * The condition object for this query.
   *
   * Condition handling is handled via composition.
   *
   * @var \Drupal\Core\Database\Query\Condition
   */
  protected $condition;

  /**
   */
  public function condition($field, $value = NULL, $operator = '=') {
    $this->condition->condition($field, $value, $operator);
    return $this;
  }

  /**
   */
  public function isNull($field) {
    $this->condition->isNull($field);
    return $this;
  }

  /**
   */
  public function isNotNull($field) {
    $this->condition->isNotNull($field);
    return $this;
  }

  /**
   */
  public function exists(SelectInterface $select) {
    $this->condition->exists($select);
    return $this;
  }

  /**
   */
  public function notExists(SelectInterface $select) {
    $this->condition->notExists($select);
    return $this;
  }

  /**
   */
  public function &conditions() {
    return $this->condition->conditions();
  }

  /**
   */
  public function arguments() {
    return $this->condition->arguments();
  }

  /**
   */
  public function where($snippet, $args = array()) {
    $this->condition->where($snippet, $args);
    return $this;
  }

  /**
   */
  public function compile(Connection $connection, PlaceholderInterface $queryPlaceholder) {
    $this->condition->compile($connection, $queryPlaceholder);
  }

  /**
   */
  public function compiled() {
    return $this->condition->compiled();
  }

  /**
   */
  public function conditionGroupFactory($conjunction = 'AND') {
    return new Condition($conjunction);
  }

  /**
   */
  public function andConditionGroup() {
    return $this->conditionGroupFactory('AND');
  }

  /**
   */
  public function orConditionGroup() {
    return $this->conditionGroupFactory('OR');
  }

}