interface VocabularyStorageInterface
Same name and namespace in other branches
- 11.x core/modules/taxonomy/src/VocabularyStorageInterface.php \Drupal\taxonomy\VocabularyStorageInterface
Defines an interface for vocabulary entity storage classes.
Hierarchy
- interface \Drupal\Core\Entity\EntityStorageInterface
- interface \Drupal\Core\Config\Entity\ConfigEntityStorageInterface implements \Drupal\Core\Entity\EntityStorageInterface
- interface \Drupal\taxonomy\VocabularyStorageInterface implements \Drupal\Core\Config\Entity\ConfigEntityStorageInterface
- interface \Drupal\Core\Config\Entity\ConfigEntityStorageInterface implements \Drupal\Core\Entity\EntityStorageInterface
Expanded class hierarchy of VocabularyStorageInterface
All classes that implement VocabularyStorageInterface
6 files declare their use of VocabularyStorageInterface
- ForumController.php in core/
modules/ forum/ src/ Controller/ ForumController.php - NodeTermData.php in core/
modules/ taxonomy/ src/ Plugin/ views/ relationship/ NodeTermData.php - TaxonomyIndexTid.php in core/
modules/ taxonomy/ src/ Plugin/ views/ field/ TaxonomyIndexTid.php - TaxonomyIndexTid.php in core/
modules/ taxonomy/ src/ Plugin/ views/ filter/ TaxonomyIndexTid.php - Tid.php in core/
modules/ taxonomy/ src/ Plugin/ views/ argument_default/ Tid.php
File
-
core/
modules/ taxonomy/ src/ VocabularyStorageInterface.php, line 10
Namespace
Drupal\taxonomyView source
interface VocabularyStorageInterface extends ConfigEntityStorageInterface {
/**
* Gets top-level term IDs of vocabularies.
*
* @param array $vids
* Array of vocabulary IDs.
*
* @return array
* Array of top-level term IDs.
*/
public function getToplevelTids($vids);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.