You are here

public function Query::__construct in Multiversion 8.2

Same name and namespace in other branches
  1. 8 src/Entity/Query/Sql/Query.php \Drupal\multiversion\Entity\Query\Sql\Query::__construct()

Constructs a query object.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

string $conjunction:

  • AND: all of the conditions on the query need to match.
  • OR: at least one of the conditions on the query need to match.

\Drupal\Core\Database\Connection $connection: The database connection to run the query against.

array $namespaces: List of potential namespaces of the classes belonging to this query.

Overrides Query::__construct

File

src/Entity/Query/Sql/Query.php, line 49

Class

Query

Namespace

Drupal\multiversion\Entity\Query\Sql

Code

public function __construct(EntityTypeInterface $entity_type, $conjunction, Connection $connection, array $namespaces, WorkspaceManagerInterface $workspace_manager) {
  parent::__construct($entity_type, $conjunction, $connection, $namespaces);
  $this->entityTypeManager = \Drupal::service('entity_type.manager');
  $this->multiversionManager = \Drupal::service('multiversion.manager');
  $this->workspaceManager = $workspace_manager;
}