QueryFactory::get

public QueryFactory::get(EntityTypeInterface $entity_type, $conjunction)

Instantiates an entity query for a given entity type.

Parameters

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

string $conjunction: The operator to use to combine conditions: 'AND' or 'OR'.

Return value

\Drupal\Core\Entity\Query\QueryInterface An entity query for a specific configuration entity type.

Overrides QueryFactoryInterface::get

File

core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php, line 31

Class

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

Namespace

Drupal\Core\Entity\Query\Null

Code

public function get(EntityTypeInterface $entity_type, $conjunction) {
  return new Query($entity_type, $conjunction, $this->namespaces);
}
doc_Drupal
2016-10-29 09:35:52
Comments
Leave a Comment

Please login to continue.