QueryFactory.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/modules/workspaces/src/EntityQuery/QueryFactory.php
- 8.9.x core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
- 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
- 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
- 8.9.x core/lib/Drupal/Core/Entity/Query/QueryFactory.php
- 8.9.x core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
- 8.9.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
- 10 core/modules/workspaces/src/EntityQuery/QueryFactory.php
- 10 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
- 10 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
- 10 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
- 10 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
- 10 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
- 11.x core/modules/workspaces/src/EntityQuery/QueryFactory.php
- 11.x core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
- 11.x core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
- 11.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
- 11.x core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
- 11.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
Namespace
Drupal\Core\Entity\KeyValueStore\QueryFile
-
core/
lib/ Drupal/ Core/ Entity/ KeyValueStore/ Query/ QueryFactory.php
View source
<?php
namespace Drupal\Core\Entity\KeyValueStore\Query;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\Query\QueryException;
use Drupal\Core\Entity\Query\QueryFactoryInterface;
use Drupal\Core\KeyValueStore\KeyValueFactoryInterface;
/**
* Provides a factory for creating the key value entity query.
*/
class QueryFactory implements QueryFactoryInterface {
/**
* The key value factory.
*
* @var \Drupal\Core\KeyValueStore\KeyValueFactoryInterface
*/
protected $keyValueFactory;
/**
* The namespace of this class, the parent class etc.
*
* @var array
*/
protected $namespaces;
/**
* Constructs a QueryFactory object.
*/
public function __construct(KeyValueFactoryInterface $key_value_factory) {
$this->keyValueFactory = $key_value_factory;
$this->namespaces = Query::getNamespaces($this);
}
/**
* {@inheritdoc}
*/
public function get(EntityTypeInterface $entity_type, $conjunction) {
return new Query($entity_type, $conjunction, $this->namespaces, $this->keyValueFactory);
}
/**
* {@inheritdoc}
*/
public function getAggregate(EntityTypeInterface $entity_type, $conjunction) {
throw new QueryException('Aggregation over key-value entity storage is not supported');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
QueryFactory | Provides a factory for creating the key value entity query. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.