function FileSelection::buildEntityQuery
Builds an EntityQuery to get referenceable entities.
Parameters
string|null $match: (Optional) Text to match the label against. Defaults to NULL.
string $match_operator: (Optional) The operation the matching should be done with. Defaults to "CONTAINS".
Return value
\Drupal\Core\Entity\Query\QueryInterface The EntityQuery object with the basic conditions and sorting applied to it.
Overrides DefaultSelection::buildEntityQuery
File
- 
              core/modules/ file/ src/ Plugin/ EntityReferenceSelection/ FileSelection.php, line 24 
Class
- FileSelection
- Provides specific access control for the file entity type.
Namespace
Drupal\file\Plugin\EntityReferenceSelectionCode
protected function buildEntityQuery($match = NULL, $match_operator = 'CONTAINS') {
  $query = parent::buildEntityQuery($match, $match_operator);
  // Allow referencing :
  // - files with status "permanent"
  // - or files uploaded by the current user (since newly uploaded files only
  //   become "permanent" after the containing entity gets validated and
  //   saved.)
  $query->condition($query->orConditionGroup()
    ->condition('status', FileInterface::STATUS_PERMANENT)
    ->condition('uid', $this->currentUser
    ->id()));
  return $query;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
