VocabularyStorageInterface.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\taxonomyFile
core/modules/taxonomy/src/VocabularyStorageInterface.phpView source
<?php
namespace Drupal\taxonomy;
use Drupal\Core\Config\Entity\ConfigEntityStorageInterface;
/**
* Defines an interface for vocabulary entity storage classes.
*/
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);
}
Interfaces
Name | Description |
---|---|
VocabularyStorageInterface | Defines an interface for vocabulary entity storage classes. |