使用 xml 扩展 magento 管理
在 /admin/sales_order/view/ 中,我想在左侧菜单上添加一个链接,我想在其中显示我在前端添加的额外产品选项。我需要做的就是扩展核心 xml 并添加类似的内容:
<adminhtml_sales_order_view>
<reference name="sales_order_tabs">
<action method="addTab"><name>my_name</name><block>my/block</block></action>
</reference>
</adminhtml_sales_order_view>
我尝试制作自己的模块,但我就是做不到。谁能帮助我吗?
in /admin/sales_order/view/ I want to add a link on the left menu where I want to show extra product options I’ve added to in the frontend. All I need to do is extend the core xml and add somthing like:
<adminhtml_sales_order_view>
<reference name="sales_order_tabs">
<action method="addTab"><name>my_name</name><block>my/block</block></action>
</reference>
</adminhtml_sales_order_view>
I tried making my own module, but I just can't get i right. Can anyone help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我最终得到的解决方案。
以通常的方式创建一个新模块。
将此 config.xml 放在 /company/module/etc 中:
在 /app/design/adminhtml/default/default/layout 中将 module_name.xml 包含如下内容:
希望这可以帮助那些寻找相同答案的人。
当然,您必须用内容填充您的块,请查看核心块的示例。这只是为了演示如何使用 xml 扩展核心。
Here's the solution I ended up with.
Create a new module the usual way.
Have this config.xml in /company/module/etc:
In /app/design/adminhtml/default/default/layout have your module_name.xml with something like:
Hope this helps those looking for the same answer.
Of course you have to fill your block with content, look at the core blocks for examples. This was just to demonstate how to extend the core with xml.
http://inchoo.net/ecommerce/magento/coffeefreak-blank-magento-extension-for-building-main-admin-menu-with-sidebar-and-tabs/
http://inchoo.net/ecommerce/magento/coffeefreak-blank-magento-extension-for-building-main-admin-menu-with-sidebar-and-tabs/