我正在编写我的第一个Shopware 6插件和下面的这个方法
但是插件的导航条目不会出现。(URL: admin#/sw/sw/index)菜单如下所示:

但应该是这样的:

我的插件是活动的(在后端签入),表是创建的,所以我猜它已经加载了。
我将教程中的config.xml文件复制到我的插件中,并对其进行了验证(只是为了确保)。
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/platform/master/src/Core/System/SystemConfig/Schema/config.xsd">
<card>
<title>Basic Configuration</title>
<title lang="de-DE">Grundeinstellungen</title>
<input-field>
<name>email</name>
<copyable>true</copyable>
<label>eMail address</label>
<label lang="de-DE">E-Mailadresse</label>
<placeholder>you@example.com</placeholder>
<placeholder lang="de-DE">du@beispiel.de</placeholder>
<helpText>Please fill in your personal eMail address</helpText>
<helpText lang="de-DE">Bitte trage deine persönliche E-Mailadresse ein</helpText>
</input-field>
<input-field type="single-select">
<name>mailMethod</name>
<options>
<option>
<id>smtp</id>
<name>English smtp</name>
<name lang="de-DE">German smtp</name>
</option>
<option>
<id>pop3</id>
<name>English pop3</name>
<name lang="de-DE">German pop3</name>
</option>
</options>
<defaultValue>smtp</defaultValue>
<label>Mail method</label>
<label lang="de-DE">Versand-Protokoll</label>
</input-field>
</card>
<card>
<title>Advanced Configuration</title>
<title lang="de-DE">Erweiterte Einstellungen</title>
<input-field type="password">
<name>secret</name>
<label>Secret token</label>
<label lang="de-DE">Geheimschlüssel</label>
<helpText>Your secret token for xyz...</helpText>
<helpText lang="de-DE">Dein geheimer Schlüssel für xyz...</helpText>
</input-field>
</card>,那么显示插件导航条目的先决条件是什么?
发布于 2020-07-30 16:25:16
好吧,问题是我看错地方了。
对于设置选项卡,您将需要一个带有settingItem的自己的模块
- Shyim
如果像我一样使用config.xml,您可以在隐藏在这三个点后面的插件配置中配置它。

https://stackoverflow.com/questions/63177260
复制相似问题