如何在admin中使用自定义模块启用/禁用 - Magento

时间:2014-10-16 11:54:51

标签: magento module admin

最初我是magento的新手。所以请帮我学习magento。我创建了一个名为' card voucher'的自定义模块。我需要启用或禁用模板表单adminpanel。所以我在

上创建了system.xml

我的app / code / community / card / voucher / etc / system.xml。代码如下所示

<config>
<tabs>
    <myconf translate="label">
        <label>card voucher</label>
        <sort_order>150</sort_order>
    </myconf>
</tabs>
<sections>
    <tab1 translate="label" module="adminhtml">
        <label>Enable / Disable</label>
        <tab>myconf</tab>
        <sort_order>10</sort_order>
        <show_in_default>1</show_in_default>
        <show_in_website>1</show_in_website>
        <show_in_store>1</show_in_store>
        <groups>
            <general translate="label comment">
                <label>General</label>
                <sort_order>50</sort_order>
                <show_in_default>1</show_in_default>
                <show_in_website>1</show_in_website>
                <show_in_store>1</show_in_store>
                <comment><![CDATA[This is a <strong>card voucher</strong> Extension used for checking voucher code.<br />You can simply enable disable this extension here. ]]></comment>
                <fields>

                    <active translate="label comment">
                        <label>Enable/Disable</label>
                        <frontend_type>select</frontend_type>
                        <sort_order>54</sort_order>
                        <source_model>adminhtml/system_config_source_enabledisable</source_model>
                        <show_in_default>1</show_in_default>
                        <show_in_website>1</show_in_website>
                        <show_in_store>1</show_in_store>
                    </active>
                </fields>
            </general>
        </groups>
    </tab1>
</sections>

然后我禁用了该模块,但仍然在我的网站上。我认为这段代码足以建立这个功能。

请尽快帮助我

由于

1 个答案:

答案 0 :(得分:1)

通常,您希望禁用模块功能,而不是系统配置中的模块本身。

这个模块究竟做了什么?

在你的代码中

if(Mage::getStoreConfig('sectionName/groupName/active')){
  // run your code

}