我知道如何在 config.xml 的目录主导航菜单下创建一个子菜单,即:
<menu>
<catalog>
<children>
<testimonials>
<title>Manage Testimonials</title>
<sort_order>1</sort_order>
<action>adminhtml/adminhtml_testimonials</action>
</testimonials>
</children>
</catalog>
</menu>
但是如何在客户菜单下创建子菜单?我试过了:
<menu>
<customers>
<children>
<testimonials>
<title>Manage Testimonials</title>
<sort_order>1</sort_order>
<action>adminhtml/adminhtml_testimonials</action>
</testimonials>
</children>
</customers>
</menu>
但它不起作用。任何建议将不胜感激。