You are here

class PgsqlQueryFactory in Workspace 8.2

Workspace PostgreSQL specific entity query implementation.

Hierarchy

Expanded class hierarchy of PgsqlQueryFactory

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

File

src/EntityQuery/PgsqlQueryFactory.php, line 14

Namespace

Drupal\workspace\EntityQuery
View source
class PgsqlQueryFactory extends BaseQueryFactory {

  /**
   * The workspace manager.
   *
   * @var \Drupal\workspace\WorkspaceManagerInterface
   */
  protected $workspaceManager;

  /**
   * Constructs a PgsqlQueryFactory object.
   *
   * @param \Drupal\Core\Database\Connection $connection
   *   The database connection used by the entity query.
   * @param \Drupal\workspace\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

Namesort descending Modifiers Type Description Overrides
PgsqlQueryFactory::$workspaceManager protected property The workspace manager.
PgsqlQueryFactory::get public function Instantiates an entity query for a given entity type. Overrides QueryFactory::get
PgsqlQueryFactory::getAggregate public function Instantiates an aggregation query object for a given entity type. Overrides QueryFactory::getAggregate
PgsqlQueryFactory::__construct public function Constructs a PgsqlQueryFactory object. Overrides QueryFactory::__construct
QueryFactory::$connection protected property The database connection to use.
QueryFactory::$namespaces protected property The namespace of this class, the parent class etc.