W3cubDocs

/Drupal 8

public function Query::__construct

public Query::__construct(EntityTypeInterface $entity_type, $conjunction, Connection $connection, array $namespaces)

Constructs a query object.

Parameters

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

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.

\Drupal\Core\Database\Connection $connection: The database connection to run the query against.

array $namespaces: List of potential namespaces of the classes belonging to this query.

Overrides QueryBase::__construct

File

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

Class

Query
The SQL storage entity query class.

Namespace

Drupal\Core\Entity\Query\Sql

Code

public function __construct(EntityTypeInterface $entity_type, $conjunction, Connection $connection, array $namespaces) {
  parent::__construct($entity_type, $conjunction, $namespaces);
  $this->connection = $connection;
}

© 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!Query.php/function/Query::__construct/8.1.x