public function QueryFactory::get

Same name in this branch
  1. 8.x drupal/core/lib/Drupal/Core/Entity/Query/QueryFactory.php \Drupal\Core\Entity\Query\QueryFactory::get()
  2. 8.x drupal/core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::get()
  3. 8.x drupal/core/modules/field_sql_storage/lib/Drupal/field_sql_storage/Entity/QueryFactory.php \Drupal\field_sql_storage\Entity\QueryFactory::get()

Returns a query object for a given entity type.

Parameters

string $entity_type: The entity type.

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 value

\Drupal\Core\Entity\Query\QueryInterface The query object that can query the given entity type.

File

drupal/core/lib/Drupal/Core/Entity/Query/QueryFactory.php, line 47
Contains \Drupal\Core\Entity\Query\QueryFactory.

Class

QueryFactory
Factory class Creating entity query objects.

Namespace

Drupal\Core\Entity\Query

Code

public function get($entity_type, $conjunction = 'AND') {
  $service_name = $this->entityManager
    ->getStorageController($entity_type)
    ->getQueryServicename();
  return $this->container
    ->get($service_name)
    ->get($entity_type, $conjunction, $this->entityManager);
}