Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/Query/QueryFactoryInterface.php \Drupal\Core\Entity\Query\QueryFactoryInterface
  2. 9 core/lib/Drupal/Core/Entity/Query/QueryFactoryInterface.php \Drupal\Core\Entity\Query\QueryFactoryInterface

Defines an interface for QueryFactory classes.

Hierarchy

Expanded class hierarchy of QueryFactoryInterface

All classes that implement QueryFactoryInterface

5 files declare their use of QueryFactoryInterface
ConfigEntityStorageTest.php in core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityStorageTest.php
QueryFactory.php in core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
QueryFactory.php in core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
QueryFactory.php in core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
SqlContentEntityStorageTest.php in core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageTest.php

File

core/lib/Drupal/Core/Entity/Query/QueryFactoryInterface.php, line 10

Namespace

Drupal\Core\Entity\Query
View source
interface QueryFactoryInterface {

  /**
   * Instantiates an entity query for a given entity type.
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type definition.
   * @param string $conjunction
   *   The operator to use to combine conditions: 'AND' or 'OR'.
   *
   * @return \Drupal\Core\Entity\Query\QueryInterface
   *   An entity query for a specific configuration entity type.
   */
  public function get(EntityTypeInterface $entity_type, $conjunction);

  /**
   * Instantiates an aggregation query object for a given entity type.
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type definition.
   * @param string $conjunction
   *   - AND: all of the conditions on the query need to match.
   *   - OR: at least one of the conditions on the query need to match.
   *
   * @return \Drupal\Core\Entity\Query\QueryAggregateInterface
   *   The query object that can query the given entity type.
   *
   * @throws \Drupal\Core\Entity\Query\QueryException
   */
  public function getAggregate(EntityTypeInterface $entity_type, $conjunction);

}

Members

Namesort descending Modifiers Type Description Overrides
QueryFactoryInterface::get public function Instantiates an entity query for a given entity type. 3
QueryFactoryInterface::getAggregate public function Instantiates an aggregation query object for a given entity type. 3