W3cubDocs

/Drupal 8

public function QueryFactory::get

public QueryFactory::get(EntityTypeInterface $entity_type, $conjunction)

Instantiates an entity query for a given entity type.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

string $conjunction: The operator to use to combine conditions: 'AND' or 'OR'.

Return value

\Drupal\Core\Entity\Query\QueryInterface An entity query for a specific configuration entity type.

Overrides QueryFactoryInterface::get

File

core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php, line 46

Class

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

Namespace

Drupal\Core\Entity\Query\Sql

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!Query!Sql!QueryFactory.php/function/QueryFactory::get/8.1.x