QueryFactory.php

Same filename in this branch
  1. 11.x core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  2. 11.x core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  3. 11.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  4. 11.x core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  5. 11.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. 8.9.x core/modules/workspaces/src/EntityQuery/QueryFactory.php
  8. 8.9.x core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  9. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  10. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  11. 8.9.x core/lib/Drupal/Core/Entity/Query/QueryFactory.php
  12. 8.9.x core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  13. 8.9.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
  14. 10 core/modules/workspaces/src/EntityQuery/QueryFactory.php
  15. 10 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  16. 10 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  17. 10 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  18. 10 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  19. 10 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php

Namespace

Drupal\workspaces\EntityQuery

File

core/modules/workspaces/src/EntityQuery/QueryFactory.php

View source
<?php

namespace Drupal\workspaces\EntityQuery;

use Drupal\Core\Database\Connection;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\Query\QueryBase;
use Drupal\Core\Entity\Query\Sql\QueryFactory as BaseQueryFactory;
use Drupal\workspaces\WorkspaceInformationInterface;
use Drupal\workspaces\WorkspaceManagerInterface;

/**
 * Workspaces-specific entity query implementation.
 *
 * @internal
 */
class QueryFactory extends BaseQueryFactory {
    public function __construct(Connection $connection, WorkspaceManagerInterface $workspaceManager, WorkspaceInformationInterface $workspaceInfo) {
        $this->connection = $connection;
        $this->namespaces = QueryBase::getNamespaces($this);
    }
    
    /**
     * {@inheritdoc}
     */
    public function get(EntityTypeInterface $entity_type, $conjunction) {
        $class = QueryBase::getClass($this->namespaces, 'Query');
        return new $class($entity_type, $conjunction, $this->connection, $this->namespaces, $this->workspaceManager, $this->workspaceInfo);
    }
    
    /**
     * {@inheritdoc}
     */
    public function getAggregate(EntityTypeInterface $entity_type, $conjunction) {
        $class = QueryBase::getClass($this->namespaces, 'QueryAggregate');
        return new $class($entity_type, $conjunction, $this->connection, $this->namespaces, $this->workspaceManager, $this->workspaceInfo);
    }

}

Classes

Title Deprecated Summary
QueryFactory Workspaces-specific entity query implementation.

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