Same filename in this branch
  1. 10 core/modules/workspaces/src/EntityQuery/QueryFactory.php
  2. 10 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  3. 10 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
  4. 10 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  5. 10 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  6. 10 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  2. 9 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php

Namespace

Drupal\Core\Entity\Query\Sql

File

core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
View source
<?php

namespace Drupal\Core\Entity\Query\Sql;

use Drupal\Core\Database\Connection;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\Query\QueryBase;
use Drupal\Core\Entity\Query\QueryFactoryInterface;

/**
 * Factory class creating entity query objects for the SQL backend.
 *
 * @see \Drupal\Core\Entity\Query\Sql\Query
 * @see \Drupal\Core\Entity\Query\Sql\QueryAggregate
 */
class QueryFactory implements QueryFactoryInterface {

  /**
   * The database connection to use.
   *
   * @var \Drupal\Core\Database\Connection
   */
  protected $connection;

  /**
   * The namespace of this class, the parent class etc.
   *
   * @var array
   */
  protected $namespaces;

  /**
   * Constructs a QueryFactory object.
   *
   * Initializes the list of namespaces used to locate query
   * classes for different entity types.
   *
   * @param \Drupal\Core\Database\Connection $connection
   *   The database connection used by the entity query.
   */
  public function __construct(Connection $connection) {
    $this->connection = $connection;
    $this->namespaces = QueryBase::getNamespaces($this);
  }

  /**
   * {@inheritdoc}
   */
  public function get(EntityTypeInterface $entity_type, $conjunction) {
    $class = QueryBase::getClass($this->namespaces, 'Query');
    return new $class($entity_type, $conjunction, $this->connection, $this->namespaces);
  }

  /**
   * {@inheritdoc}
   */
  public function getAggregate(EntityTypeInterface $entity_type, $conjunction) {
    $class = QueryBase::getClass($this->namespaces, 'QueryAggregate');
    return new $class($entity_type, $conjunction, $this->connection, $this->namespaces);
  }

}

Classes

Namesort descending Description
QueryFactory Factory class creating entity query objects for the SQL backend.