You are here

public function QueryFactory::__construct in Zircon Profile 8.0

Same name in this branch
  1. 8.0 core/lib/Drupal/Core/Entity/Query/QueryFactory.php \Drupal\Core\Entity\Query\QueryFactory::__construct()
  2. 8.0 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::__construct()
  3. 8.0 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php \Drupal\Core\Entity\KeyValueStore\Query\QueryFactory::__construct()
  4. 8.0 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php \Drupal\Core\Entity\Query\Sql\QueryFactory::__construct()
  5. 8.0 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php \Drupal\Core\Entity\Query\Null\QueryFactory::__construct()
Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php \Drupal\Core\Entity\Query\Sql\QueryFactory::__construct()

Constructs a QueryFactory object.

Parameters

\Drupal\Core\Database\Connection $connection: The database connection used by the entity query.

File

core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php, line 43
Contains \Drupal\Core\Entity\Query\Sql\QueryFactory.

Class

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

Namespace

Drupal\Core\Entity\Query\Sql

Code

public function __construct(Connection $connection) {
  $this->connection = $connection;
  $this->namespaces = QueryBase::getNamespaces($this);
}