Query::__construct

Query::__construct(EntityTypeInterface $entity_type, $conjunction, ConfigFactoryInterface $config_factory, KeyValueFactoryInterface $key_value_factory, array $namespaces)

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\Config\ConfigFactoryInterface $config_factory: The config factory.

\Drupal\Core\KeyValueStore\KeyValueFactoryInterface $key_value_factory: The key value factory.

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

Overrides QueryBase::__construct

File

core/lib/Drupal/Core/Config/Entity/Query/Query.php, line 52

Class

Query
Defines the entity query for configuration entities.

Namespace

Drupal\Core\Config\Entity\Query

Code

function __construct(EntityTypeInterface $entity_type, $conjunction, ConfigFactoryInterface $config_factory, KeyValueFactoryInterface $key_value_factory, array $namespaces) {
  parent::__construct($entity_type, $conjunction, $namespaces);
  $this->configFactory = $config_factory;
  $this->keyValueFactory = $key_value_factory;
}
doc_Drupal
2016-10-29 09:35:28
Comments
Leave a Comment

Please login to continue.