Magentoで2つのモジュール(AとB)を作成しました。これらの各モジュールは、管理セクションから管理されます。
モジュールの設定ファイルに次の設定を書き込んで、各モジュールの管理セクションのcms(menu)の下にメニューリンクを作成してみました
モジュールA>etc>config.xml
<adminhtml>
<menu>
<a module="A">
<title>A</title>
<sort_order>100</sort_order>
<children>
<items module="A">
<title>Manage A</title>
<sort_order>0</sort_order>
<action>a/adminhtml_a</action>
</items>
</children>
</a>
</menu>
<adminhtml>
モジュールB>etc>config.xml
<adminhtml>
<menu>
<b module="B">
<title>B</title>
<sort_order>100</sort_order>
<children>
<items module="B">
<title>Manage B</title>
<sort_order>1</sort_order>
<action>b/adminhtml_b</action>
</items>
</children>
</b>
</menu>
<adminhtml>
ただし、モジュールBのリンクのみがCMSメニューに表示されます。どうすれば両方のリンクを表示できますか?