QueryFactory.php in Drupal 8
Same filename in this branch
- 8 core/modules/workspaces/src/EntityQuery/QueryFactory.php
- 8 core/lib/Drupal/Core/Entity/Query/QueryFactory.php
- 8 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
- 8 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
- 8 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
- 8 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
- 8 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
Same filename and directory in other branches
Namespace
Drupal\Core\Entity\Query\NullFile
core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.phpView source
<?php
namespace Drupal\Core\Entity\Query\Null;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\Query\QueryBase;
use Drupal\Core\Entity\Query\QueryFactoryInterface;
/**
* Provides a factory for creating entity query objects for the null backend.
*/
class QueryFactory implements QueryFactoryInterface {
/**
* The namespace of this class, the parent class etc.
*
* @var array
*/
protected $namespaces;
/**
* Constructs a QueryFactory object.
*/
public function __construct() {
$this->namespaces = QueryBase::getNamespaces($this);
}
/**
* {@inheritdoc}
*/
public function get(EntityTypeInterface $entity_type, $conjunction) {
return new Query($entity_type, $conjunction, $this->namespaces);
}
/**
* {@inheritdoc}
*/
public function getAggregate(EntityTypeInterface $entity_type, $conjunction) {
return new Query($entity_type, $conjunction, $this->namespaces);
}
}
Classes
Name | Description |
---|---|
QueryFactory | Provides a factory for creating entity query objects for the null backend. |