You are here

public function QueryFactory::__construct in Drupal 8

Same name in this branch
  1. 8 core/modules/workspaces/src/EntityQuery/QueryFactory.php \Drupal\workspaces\EntityQuery\QueryFactory::__construct()
  2. 8 core/lib/Drupal/Core/Entity/Query/QueryFactory.php \Drupal\Core\Entity\Query\QueryFactory::__construct()
  3. 8 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::__construct()
  4. 8 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php \Drupal\Core\Entity\KeyValueStore\Query\QueryFactory::__construct()
  5. 8 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php \Drupal\Core\Entity\Query\Sql\QueryFactory::__construct()
  6. 8 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php \Drupal\Core\Entity\Query\Null\QueryFactory::__construct()
Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::__construct()

Constructs a QueryFactory object.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config storage used by the config entity query.

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

\Drupal\Core\Config\ConfigManagerInterface $config_manager: The configuration manager.

File

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

Class

QueryFactory
Provides a factory for creating entity query objects for the config backend.

Namespace

Drupal\Core\Config\Entity\Query

Code

public function __construct(ConfigFactoryInterface $config_factory, KeyValueFactoryInterface $key_value, ConfigManagerInterface $config_manager) {
  $this->configFactory = $config_factory;
  $this->keyValueFactory = $key_value;
  $this->configManager = $config_manager;
  $this->namespaces = QueryBase::getNamespaces($this);
}