EntityStorageBase::getQuery

public EntityStorageBase::getQuery($conjunction = 'AND')

Gets an entity query instance.

Parameters

string $conjunction: (optional) The logical operator for the query, either:

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

Return value

\Drupal\Core\Entity\Query\QueryInterface The query instance.

Overrides EntityStorageInterface::getQuery

See also

\Drupal\Core\Entity\EntityStorageBase::getQueryServiceName()

File

core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 510

Class

EntityStorageBase
A base entity storage class.

Namespace

Drupal\Core\Entity

Code

public function getQuery($conjunction = 'AND') {
  // Access the service directly rather than entity.query factory so the
  // storage's current entity type is used.
  return \Drupal::service($this->getQueryServiceName())->get($this->entityType, $conjunction);
}
doc_Drupal
2016-10-29 09:07:40
Comments
Leave a Comment

Please login to continue.