Mage_Pageモジュールにページレイアウトを追加するにはどうすればよいですか?


11

私はコアというアップグレードMagentoの後に発見されたMage_Pageのは、config.xml手動で編集されていた、そして今、私は上書きコアをしていない方法でXMLを変更するために探しています。

コアXMLの例を次に示します。

<config>
    <modules>
        <Mage_Page>
            <version>1.6.0.0</version>
        </Mage_Page>
    </modules>
    <global>
        <models>
            <page>
                <class>Mage_Page_Model</class>
            </page>
        </models>
        <blocks>
            <page>
                <class>Mage_Page_Block</class>
            </page>
        </blocks>
        <page>
            <layouts>
                <empty module="page" translate="label">
                    <label>Empty</label>
                    <template>page/empty.phtml</template>
                    <layout_handle>page_empty</layout_handle>
                </empty>
                <one_column module="page" translate="label">
                    <label>1 column</label>
                    <template>page/1column.phtml</template>
                    <layout_handle>page_one_column</layout_handle>
                    <is_default>1</is_default>

one_columnまたはのような別のレイアウトを追加しようとしていますempty。による上書きconfig.xmlapp/code/local/Mage/Page/etc/config.xmlうまくいかなかったようですが、コアに触れずにどうすればいいですか?

回答:


5

Mage_Pageに依存するモジュールを作成し、独自の構成に新しいレイアウトを追加します。

app / etc / modules / My_Layout.xml

<?xml version="1.0"?>
<config>
    <modules>
        <My_Layout>
            <active>true</active>
            <codePool>local</codePool>
            <depends>
                <Mage_Page />
            </depends>
        </My_Layout>
    </modules>
</config>

app / code / local / My / Layout / etc / config.xml

<?xml version="1.0"?>
<config>
    <modules>
        <My_Layout>
            <version>1.0.0</version>
        </My_Layout>
    </modules>
    <global>
        <page>
            <layouts>
                <my_layout module="page" translate="label">
                    <label>My Layout</label>
                    <template>page/mylayout.phtml</template>
                    <layout_handle>my_layout</layout_handle>
                </my_layout>
            </layouts>
        </page>
    </global>
    <frontend>
        <layout>
            <updates>
                <my_layout module="My_Layout">
                    <file>my_layout.xml</file>
                </my_layout>
            </updates>
        </layout>
    </frontend>
</config>

app / design / frontend / base / default / layout / my_layout.xml

<?xml version="1.0"?>
<layout version="0.1.0">
    <my_layout translate="label">
        <label>All My Layout Pages</label>
        <reference name="root">
            <action method="setTemplate"><template>page/mylayout.phtml</template></action>
            <!-- Mark root page block that template is applied -->
            <action method="setIsHandle"><applied>1</applied></action>
        </reference>
    </my_layout>
</layout>

モジュールのカスタムレイアウト更新ファイルで関連するレイアウト更新ハンドルを提供するのも良い方法です。REF の元のレイアウト構成Mage_Pageモジュール(リンク)対応する更新ハンドル宣言(リンク)
benmarks

@benmarks done!:)
リック・カイパーズ2013年

1

app / etc / local.xmlに必要なものを追加するオプションがあります。global/ page / layoutsノードを作成し、そこに必要なものを追加するだけです。これは最もエレガントなソリューションではありませんが、レイアウトテンプレートを追加するための専用モジュールを作成したくない場合は問題なく機能します。このレイアウト構成をさらに多くのショップに配布する場合は、ローカル/コミュニティモジュールを実行してください。

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