class PgsqlQueryFactory
Same name in other branches
- 8.9.x core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php \Drupal\workspaces\EntityQuery\PgsqlQueryFactory
- 10 core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php \Drupal\workspaces\EntityQuery\PgsqlQueryFactory
- 11.x core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php \Drupal\workspaces\EntityQuery\PgsqlQueryFactory
Workspaces PostgreSQL-specific entity query implementation.
Hierarchy
- class \Drupal\Core\Entity\Query\Sql\QueryFactory implements \Drupal\Core\Entity\Query\QueryFactoryInterface
- class \Drupal\Core\Entity\Query\Sql\pgsql\QueryFactory extends \Drupal\Core\Entity\Query\Sql\QueryFactory
- class \Drupal\workspaces\EntityQuery\PgsqlQueryFactory extends \Drupal\Core\Entity\Query\Sql\pgsql\QueryFactory
- class \Drupal\Core\Entity\Query\Sql\pgsql\QueryFactory extends \Drupal\Core\Entity\Query\Sql\QueryFactory
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\EntityQueryView 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.