我想从Drupal 8中的某个词汇表检索分类术语。
显然,我仍然可以使用它,taxonomy_get_tree
但已弃用。
我现在必须使用TermStorageInterface :: loadTree
我正在尝试从a访问此函数,Block
但我不了解如何实例化TermStorageInterface
该类。
我尝试直接访问该函数,但这不是静态函数:
TermStorageInterface::loadTree('categories')
我尝试实例化课程,但它告诉了我 Cannot instantiate interface Drupal\taxonomy\TermStorageInterface
$test = new TermStorageInterface();
我不了解此类的工作方式以及如何访问分类链接。我想我缺少了解Drupal的工作原理的很大一部分。