protected function TaxonomyStorages::getVocabularyStorage in Client-side Hierarchical Select 8
Same name and namespace in other branches
- 8.3 src/TaxonomyStorages.php \Drupal\cshs\TaxonomyStorages::getVocabularyStorage()
- 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\cshsCode
protected function getVocabularyStorage() : VocabularyStorageInterface {
return $this
->getStorage('taxonomy_vocabulary');
}