QueryFactory.php

Same filename in this branch
  1. 8.9.x core/modules/workspaces/src/EntityQuery/QueryFactory.php
  2. 8.9.x core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  3. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  4. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  5. 8.9.x core/lib/Drupal/Core/Entity/Query/QueryFactory.php
  6. 8.9.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
Same filename and directory in other branches
  1. 9 core/modules/workspaces/src/EntityQuery/QueryFactory.php
  2. 9 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  3. 9 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  4. 9 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  5. 9 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  6. 9 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
  7. 10 core/modules/workspaces/src/EntityQuery/QueryFactory.php
  8. 10 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  9. 10 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  10. 10 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  11. 10 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  12. 10 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
  13. 11.x core/modules/workspaces/src/EntityQuery/QueryFactory.php
  14. 11.x core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  15. 11.x core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  16. 11.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  17. 11.x core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  18. 11.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php

Namespace

Drupal\Core\Entity\Query\Null

File

core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php

View 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

Title Deprecated Summary
QueryFactory Provides a factory for creating entity query objects for the null backend.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.