0

我的模块的 config.xml 的这个内容。

我想通过这个模块更改单页模板文件。

如果我更改 onepage.xml 中的代码,它是有效的,但我想用我的模块来做这个。

这段代码有什么问题?

<config>
    <modules>
        <Mynamespace_Mymodule>
            <version>1.0</version> 
        </Mynamespace_Mymodule>
    </modules>
    <frontend>
        <layout>
            <checkout_onepage_index>
                <reference name="checkout.onepage">
                    <action method="setTemplate"><template>mynamespace/mymodule/onepage.phtml</template></action>
                </reference>
            </checkout_onepage_index>
        </layout>
    </frontend>
</config>
4

1 回答 1

1

您不能从 config.xml 调用布局

你说:我在 onepage.xml 中更改代码 -> 看起来你的意思是 checkout.xml 这是定义术语。我们可能对模块有不同的定义。

假设你在app/code/local/[Mynamespace]/[Mymodule][Mymodule]的调用中有模块mymodule.xml 你说它是从你的模块调用的吗?

1)如果是,那么您可以在您的config.xml

<config>
    <modules>
        <Mynamespace_Mymodule>
            <version>1.0</version> 
        </Mynamespace_Mymodule>
    </modules>
    <frontend>
        <layout>
            <updates>
                <mymodule>
                    <file>mymodule.xml</file>
                </mymodule>
            </updates>
        </layout>
    </frontend>
</config>

该代码将调用名为mymodule.xml 的布局然后在其中创建布局文件app/design/frontend/[base/default]/[default/yourtheme]/layout/mymodule.xml

<?xml version="1.0"?>
<layout version="0.1.0">
    <checkout_onepage_index>
        <reference name="checkout.onepage">
            <action method="setTemplate"><template>mynamespace/mymodule/onepage.phtml</template></action>
        </reference>
    </checkout_onepage_index>
</layout>

2)如果没有 -> 你的模块定义只是文件下的文件app/code/local/[Mynamespace]/[Mymodule],那么你需要重写 Onepage 的块

config.xml

<config>
    <modules>
        <Mynamespace_Mymodule>
            <version>1.0</version> 
        </Mynamespace_Mymodule>
    </modules>
    <global>
        <blocks>
            <checkout>
                <rewrite>
                    <onepage>Mynamespace_Mymodule_Block_Checkout_Onepage</onepage>
                </rewrite>
            </checkout>
        </blocks>
    </global>
</config>

使用该配置,您Mage_Checkout_Block_Onepage将被重写Mynamespace_Mymodule_Block_Checkout_Onepage(只要您保持目录结构匹配,您就可以更改名称)。

例如,您的文件将被放入:app/code/local/[Mynamespace]/[Mymodule]/Block/Checkout/Onepage.php

最后你app/code/local/[Mynamespace]/[Mymodule]/Block/Checkout/Onepage.php会是这样的:

class Mynamespace_Mymodule_Block_Checkout_Onepage extends Mage_Checkout_Block_Onepage
{
    public function __construct()
    {
        parent::__construct();
        $this->setTemplate('mynamespace/mymodule/onepage.phtml');
    }
}
于 2012-08-18T18:10:53.910 回答