0

我正在编写我的第一个 Shopware 6 插件并遵循此操作指南

但是插件的导航条目不会显示。(URL:admin#/sw/settings/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>

那么显示Plugin导航入口的前提是什么呢?

4

1 回答 1

4

好吧,问题是,我看错地方了。

对于设置选项卡,您将需要一个带有 settingItem 的自己的模块

-- 希姆

如果有人像我一样使用 config.xml,您可以在隐藏在三个点后面的插件配置中进行配置。

在此处输入图像描述

于 2020-07-30T16:25:16.733 回答