You are here

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

Same name and namespace in other branches
  1. 8 src/TaxonomyStorages.php \Drupal\cshs\TaxonomyStorages::getTermStorage()
  2. 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
Returns the list of options for `cshs` element.
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\cshs

Code

protected function getTermStorage() : TermStorageInterface {
  return $this
    ->getStorage('taxonomy_term');
}