如何在Magento(扩展)管理面板中创建多个表

时间:2013-09-16 07:50:54

标签: php menu magento-1.7 magento

我在Magento的管理面板(自定义扩展程序)中创建自定义菜单。我想知道如何为管理菜单创建块和模型。

在这里,我只需浏览this tutorial并创建管理面板菜单。

例如:

--News
   --Managed News

我还在自定义菜单中创建了不同的子菜单。 例如:

--News
  --Managed News
  --News Details
  --News Management. and so on.

这是我在自定义菜单中创建子菜单的代码。

  

应用程序/代码/社区///等/ adminhtml.xml

 <menu>
         <news translate="title" module="magentostudy_news">
            <title>News</title>
            <sort_order>65</sort_order>
            <children>
                <manage translate="title" module="magentostudy_news">
                    <title>Manage News</title>
                    <action>adminhtml/news</action>
                    <sort_order>50</sort_order>
                </manage>
                <weaves translate="title" module="magentostudy_news">
                    <title>News Details </title>
                    <action>adminhtml/details</action>
                    <sort_order>60</sort_order>
                </weaves>
            </children>
         </news>
    </menu>

我为第一个子菜单创建adminhtml/NewsController.php并创建块(包括网格,编辑,表单和制表符),模型和sql(动态表)。 但是当我为第二个子菜单创建相同的过程adminhtml/Detailscontroller.php时。它不会在我的magento数据库中创建动态表。如何为自定义模块创建动态表以及如何创建 admin子菜单的功能(模型,控制器,sql和视图)。请指导我。

提前致谢...

0 个答案:

没有答案