创建adminHtml模块时找不到帮助程序

时间:2013-08-19 13:00:17

标签: xml magento

我已经开始关注在我创建的模块中创建AdminHtml部分的this Alan Storm教程。

在查看本教程时,我可以看到Admin工具是作为一个单独的模块完成的,这是推荐的做事方式,还是为了简单起见这样做?我将我的adminhtml添加到我的模块中,我应该单独进行吗?

我收到错误

Mage_Ps_Prefcentre_Helper_Data' not found in  ... on line 546

我添加了我的Helper_Data文件,并在adminHtml.xml中添加了以下代码

<config>
<menu>
    <prefcentre translate="title" module="ps_prefcentre">
        <title>Prefcentre</title>
        <sort_order>1</sort_order>
        <children>
            <example>
                <title>Example</title>
                <action>adminhtml/admin</action>
                <sort_order>1</sort_order>
            </example>
        </children>
    </prefcentre>
</menu>
</config>

我还在config.xml文件中添加了必要的数据

 <global>
  .........
    <helpers>
        <prefcentre>
            <class>Ps_Prefcentre_Helper</class>
        </prefcentre>
    </helpers>
  .........
</global>

文件结构是

    • Prefcentre
      • 辅助
        • Data.php
      • 控制器
        • AdminController.php
        • adminHtml.xml

为什么我无法找到辅助数据?

0 个答案:

没有答案