class VocabularyStorage

Same name and namespace in other branches
  1. 11.x core/modules/taxonomy/src/VocabularyStorage.php \Drupal\taxonomy\VocabularyStorage
  2. 10 core/modules/taxonomy/src/VocabularyStorage.php \Drupal\taxonomy\VocabularyStorage
  3. 8.9.x core/modules/taxonomy/src/VocabularyStorage.php \Drupal\taxonomy\VocabularyStorage

Defines a storage handler class for taxonomy vocabularies.

Hierarchy

Expanded class hierarchy of VocabularyStorage

File

core/modules/taxonomy/src/VocabularyStorage.php, line 10

Namespace

Drupal\taxonomy
View source
class VocabularyStorage extends ConfigEntityStorage implements VocabularyStorageInterface {
  
  /**
   * {@inheritdoc}
   */
  public function getToplevelTids($vids) {
    $tids = \Drupal::entityQuery('taxonomy_term')->accessCheck(TRUE)
      ->condition('vid', $vids, 'IN')
      ->condition('parent.target_id', 0)
      ->execute();
    return array_values($tids);
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.