function MediaSelection::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/ media/ src/ Plugin/ EntityReferenceSelection/ MediaSelection.php, line 23 
Class
- MediaSelection
- Provides specific access control for the media entity type.
Namespace
Drupal\media\Plugin\EntityReferenceSelectionCode
protected function buildEntityQuery($match = NULL, $match_operator = 'CONTAINS') {
  $query = parent::buildEntityQuery($match, $match_operator);
  // Ensure that users with insufficient permission cannot see unpublished
  // entities.
  if (!$this->currentUser
    ->hasPermission('administer media')) {
    $query->condition('status', 1);
  }
  return $query;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
