public function Query::__construct in Drupal 9
Same name in this branch
- 9 core/lib/Drupal/Core/Database/Query/Query.php \Drupal\Core\Database\Query\Query::__construct()
- 9 core/lib/Drupal/Core/Config/Entity/Query/Query.php \Drupal\Core\Config\Entity\Query\Query::__construct()
- 9 core/lib/Drupal/Core/Entity/KeyValueStore/Query/Query.php \Drupal\Core\Entity\KeyValueStore\Query\Query::__construct()
- 9 core/lib/Drupal/Core/Entity/Query/Sql/Query.php \Drupal\Core\Entity\Query\Sql\Query::__construct()
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/KeyValueStore/Query/Query.php \Drupal\Core\Entity\KeyValueStore\Query\Query::__construct()
Constructs a new Query.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type.
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.
array $namespaces: List of potential namespaces of the classes belonging to this query.
\Drupal\Core\KeyValueStore\KeyValueFactoryInterface $key_value_factory: The key value factory.
Overrides QueryBase::__construct
File
- core/
lib/ Drupal/ Core/ Entity/ KeyValueStore/ Query/ Query.php, line 34
Class
- Query
- Defines the entity query for entities stored in a key value backend.
Namespace
Drupal\Core\Entity\KeyValueStore\QueryCode
public function __construct(EntityTypeInterface $entity_type, $conjunction, array $namespaces, KeyValueFactoryInterface $key_value_factory) {
parent::__construct($entity_type, $conjunction, $namespaces);
$this->keyValueFactory = $key_value_factory;
}