翻译者:长风Drupal开发(link is external)
翻译地址:http://www.5188jxt.com/technology/drupal8mo-kuai-kai-fa-tian-jia-cai-dan-lian-jie.htm(link is external)
原文地址:https://www.drupal.org/docs/8/creating-custom-modules/add-a-menu-link
现在,在你的模块的根目录先创建一个新文件,命名为hello_world.links.menu.yml 并且添加下面的的代码
hello_world.admin: title: 'Hello module settings' description: 'example of how to make an admin settings page link' parent: system.admin_config_development route_name: hello_world.content weight: 100
请注意,第一行保留一个指定的空间,就像routing 文件中的例子一样,同时要注意第五行的route name。这将在你的站点管理界面下的配置tab添加一个链接。