You are here

protected function TermSelection::buildEntityQuery in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/src/Plugin/EntityReferenceSelection/TermSelection.php \Drupal\taxonomy\Plugin\EntityReferenceSelection\TermSelection::buildEntityQuery()
  2. 9 core/modules/taxonomy/src/Plugin/EntityReferenceSelection/TermSelection.php \Drupal\taxonomy\Plugin\EntityReferenceSelection\TermSelection::buildEntityQuery()

File

core/modules/taxonomy/src/Plugin/EntityReferenceSelection/TermSelection.php, line 101

Class

TermSelection
Provides specific access control for the taxonomy_term entity type.

Namespace

Drupal\taxonomy\Plugin\EntityReferenceSelection

Code

protected function buildEntityQuery($match = NULL, $match_operator = 'CONTAINS') {
  $query = parent::buildEntityQuery($match, $match_operator);

  // Adding the 'taxonomy_term_access' tag is sadly insufficient for terms:
  // core requires us to also know about the concept of 'published' and
  // 'unpublished'.
  if (!$this->currentUser
    ->hasPermission('administer taxonomy')) {
    $query
      ->condition('status', 1);
  }
  return $query;
}