class PgsqlQueryFactory

Same name and namespace in other branches
  1. 8.9.x core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php \Drupal\workspaces\EntityQuery\PgsqlQueryFactory
  2. 10 core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php \Drupal\workspaces\EntityQuery\PgsqlQueryFactory
  3. 11.x core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php \Drupal\workspaces\EntityQuery\PgsqlQueryFactory

Workspaces PostgreSQL-specific entity query implementation.

Hierarchy

Expanded class hierarchy of PgsqlQueryFactory

1 string reference to 'PgsqlQueryFactory'
workspaces.services.yml in core/modules/workspaces/workspaces.services.yml
core/modules/workspaces/workspaces.services.yml
1 service uses PgsqlQueryFactory
pgsql.workspaces.entity.query.sql in core/modules/workspaces/workspaces.services.yml
Drupal\workspaces\EntityQuery\PgsqlQueryFactory

File

core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php, line 14

Namespace

Drupal\workspaces\EntityQuery
View source
class PgsqlQueryFactory extends BaseQueryFactory {
    
    /**
     * The workspace manager.
     *
     * @var \Drupal\workspaces\WorkspaceManagerInterface
     */
    protected $workspaceManager;
    
    /**
     * Constructs a PgsqlQueryFactory object.
     *
     * @param \Drupal\Core\Database\Connection $connection
     *   The database connection used by the entity query.
     * @param \Drupal\workspaces\WorkspaceManagerInterface $workspace_manager
     *   The workspace manager.
     */
    public function __construct(Connection $connection, WorkspaceManagerInterface $workspace_manager) {
        $this->connection = $connection;
        $this->workspaceManager = $workspace_manager;
        $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);
    }
    
    /**
     * {@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);
    }

}

Members

Title Sort descending Modifiers Object type Summary
PgsqlQueryFactory::$workspaceManager protected property The workspace manager.
PgsqlQueryFactory::get public function
PgsqlQueryFactory::getAggregate public function
PgsqlQueryFactory::__construct public function Constructs a PgsqlQueryFactory object.

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