QueryFactory.php in Drupal 10
File
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;
class QueryFactory implements QueryFactoryInterface {
protected $keyValueFactory;
protected $namespaces;
public function __construct(KeyValueFactoryInterface $key_value_factory) {
$this->keyValueFactory = $key_value_factory;
$this->namespaces = Query::getNamespaces($this);
}
public function get(EntityTypeInterface $entity_type, $conjunction) {
return new Query($entity_type, $conjunction, $this->namespaces, $this->keyValueFactory);
}
public function getAggregate(EntityTypeInterface $entity_type, $conjunction) {
throw new QueryException('Aggregation over key-value entity storage is not supported');
}
}
Classes
Name |
Description |
QueryFactory |
Provides a factory for creating the key value entity query. |