5
Finder
Setting

管理メニュー設定からカスタム モジュールのシステム/構成に移動するための URL を指定してください。

<menu>
 <finder module="finder">
  <title>finder</title>
    <sort_order>71</sort_order>               
      <children>
    <items module="finder">
    <title>Manage Finder</title>
    <sort_order>0</sort_order>
    <action>finder/adminhtml_finder</action>
   </items>
       <items module="finder">
    <title>Setting</title>
    <sort_order>0</sort_order>
    <action> ????  </action>
</items>
  </children>
    </finder>
    </menu>
4

5 に答える 5

2

次のようなアクションを与えることができるジャック:

<action>adminhtml/system_config/edit/section/your menu item</action>

http://inchoo.net/ecommerce/magento/create-configuration-for-your-magento-extension/ これは良い例の 1 つです。

于 2013-07-05T06:17:12.060 に答える
1

システム構成のカタログに追加するには、次のようにします。そして、作成する必要がありますsystem.xml

<?xml version="1.0"?>
<config>
    <tabs>
        <helloconfig translate="label" module="todaydeal">
            <label>Today Deal</label>
            <sort_order>99999</sort_order>
        </helloconfig>
    </tabs> 
   <sections>
        <catalog>
            <groups>
                <todaydeal translate="label" module="todaydeal">
                    <label>Daily Deal</label>
                    <frontend_type>text</frontend_type>
                    <sort_order>1000</sort_order>
                    <show_in_default>1</show_in_default>
                    <show_in_website>1</show_in_website>
                    <show_in_store>1</show_in_store>

                    <fields>
                        <active translate="label">
                            <label>Enabled</label>
                            <frontend_type>select</frontend_type>
                            <source_model>adminhtml/system_config_source_yesno</source_model>
                            <sort_order>1</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>0</show_in_store>
                        </active>                        
                    </fields>
                </todaydeal>
            </groups>
        </catalog>
    </sections>
</config>

詳細ドキュメント LINKも参照できます。非常に役立つと確信しています。

さらにお手伝いできることがあればお知らせください

于 2013-07-05T05:52:42.793 に答える
0

以下のリンクを参照して、Magento2 で管理メニューを作成できます: https://github.com/jainmega5395/admin-menu

説明:

モジュールの \etc\adminhtml\ 内に menu.xml ファイルを作成する必要があります。

<menu>タグ内に以下のコードを追加します。

  <add id="Custom_Module::custom" title="CUSTOM" translate="title" module="Custom_Module" sortOrder="90" dependsOnModule="Custom_Module" resource="Custom_Module::custom"/>

  <add id="Custom_Module::news" title="News" translate="title" module="Custom_Module" parent="Custom_Module::custom" sortOrder="50" dependsOnModule="Custom_Module" resource="Custom_Module::news"/>

このコードはNEWS、見出しの下にあるas という名前のメニューを作成しますCUSTOM

于 2019-04-17T05:57:26.197 に答える