config.xmlをオーバーライドする方法


15

お問い合わせページのメールテンプレートタイプを「テキスト」から「HTML」に変更する必要があります。config.xmlにあることがわかりました

 <email>
    <contacts_email_email_template translate="label" module="contacts">
       <label>Contact Form</label>
       <file>contact_form.html</file>
       <type>text</type>
    </contacts_email_email_template>
 </email>

config.xmlを適切にオーバーライドする方法

[編集]これはapp / code / core / mage / contact / etc / config.xmlファイル用であり、以下の回答は... / mage / ANYTHING / etc / config.xmlに対して機能します。

回答:


22

独自のモジュールを作成します([Namespace]_[Module])。
このために必要なもの:
app/etc/modules/[Namespace]_[Module].xml-宣言ファイル

<?xml version="1.0"?>
<config>
    <modules>
        <[Namespace]_[Module]>
            <codePool>local</codePool>
            <active>true</active>
            <depends>
                <Mage_Contacts /><!-- so the config is loaded after the one from Mage_Contacts -->
            </depends>
        </[Namespace]_[Module]>
    </modules>
</config>

app/code/local/[Namespace]/[Module]/etc/config.xml -構成ファイル

<?xml version="1.0"?>
<config>
    <modules>
        <[Namespace]_[Module]>
            <version>1.0.0</version>
        </[Namespace]_[Module]>
    </modules>
    <global>
        <template>
            <email>
                <contacts_email_email_template>
                    <type>html</type><!-- same xpath as in the original config file -->
                </contacts_email_email_template>
            </email>
        </template>
    </global>
</config>

キャッシュをクリアすると、行く準備ができました。
基本的に、これはからノードを上書きする方法ですconfig.xml。モジュールを作成し、そのconfig.xmlファイルに元のノードパスを複製し、値を追加するだけです。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.