You are here

protected function TaxonomyStorages::getVocabularyStorage in Client-side Hierarchical Select 8.3

Same name and namespace in other branches
  1. 8 src/TaxonomyStorages.php \Drupal\cshs\TaxonomyStorages::getVocabularyStorage()
  2. 8.2 src/TaxonomyStorages.php \Drupal\cshs\TaxonomyStorages::getVocabularyStorage()

Returns storage of the "taxonomy_vocabulary" entities.

Return value

\Drupal\taxonomy\VocabularyStorageInterface The storage of the "taxonomy_vocabulary" entities.

1 method overrides TaxonomyStorages::getVocabularyStorage()
CshsTaxonomyIndex::getVocabularyStorage in src/Plugin/views/filter/CshsTaxonomyIndex.php
Returns storage of the "taxonomy_vocabulary" entities.

File

src/TaxonomyStorages.php, line 53

Class

TaxonomyStorages
The taxonomy storages.

Namespace

Drupal\cshs

Code

protected function getVocabularyStorage() : VocabularyStorageInterface {
  return $this
    ->getStorage('taxonomy_vocabulary');
}