Backup of db before drupal security update
[yaffs-website] / web / core / modules / taxonomy / src / VocabularyStorageInterface.php
1 <?php
2
3 namespace Drupal\taxonomy;
4
5 use Drupal\Core\Config\Entity\ConfigEntityStorageInterface;
6
7 /**
8  * Defines an interface for vocabulary entity storage classes.
9  */
10 interface VocabularyStorageInterface extends ConfigEntityStorageInterface {
11
12   /**
13    * Gets top-level term IDs of vocabularies.
14    *
15    * @param array $vids
16    *   Array of vocabulary IDs.
17    *
18    * @return array
19    *   Array of top-level term IDs.
20    */
21   public function getToplevelTids($vids);
22
23 }