protected function TaxonomyStorages::getTermStorage in Client-side Hierarchical Select 8
Same name and namespace in other branches
- 8.3 src/TaxonomyStorages.php \Drupal\cshs\TaxonomyStorages::getTermStorage()
- 8.2 src/TaxonomyStorages.php \Drupal\cshs\TaxonomyStorages::getTermStorage()
Returns storage of the "taxonomy_term" entities.
Return value
\Drupal\taxonomy\TermStorageInterface The storage of the "taxonomy_term" entities.
1 call to TaxonomyStorages::getTermStorage()
- CshsOptionsFromHelper::getOptions in src/
CshsOptionsFromHelper.php - Collects the options.
1 method overrides TaxonomyStorages::getTermStorage()
- CshsTaxonomyIndex::getTermStorage in src/
Plugin/ views/ filter/ CshsTaxonomyIndex.php - Returns storage of the "taxonomy_term" entities.
File
- src/
TaxonomyStorages.php, line 43
Class
- TaxonomyStorages
- The taxonomy storages.
Namespace
Drupal\cshsCode
protected function getTermStorage() : TermStorageInterface {
return $this
->getStorage('taxonomy_term');
}