1

我是 Magento 的新手。我正在尝试构建一个模块,该模块在呈现之前将代码 xml 动态插入到布局 xml 中——类似于 CMS>pages 的构建方式。

就像我们如何在页面的设计部分(管理员 > cms > 页面)中指定布局 xml 一样,我想通过我的模块插入到 layout.xml 中。

基本上,我想

  • 有一个管理部分,我可以在其中通过表单输入布局代码并存储在数据库中 - 我已经弄清楚了这部分
  • 让 Magento 提取这些存储在数据库中的代码,并在布局文件被聚合和解释之前创建一个 xml 文件。- 我无法构建这部分。

任何帮助,将不胜感激。

4

2 回答 2

5

只是一点启示您可以使用观察者添加那些布局xml,假设您希望在生成xml之前添加那些布局xml

我们可以使用事件controller_action_layout_generate_xml_before

这是示例代码(在config.xml

<frontend>
    <events>
        <controller_action_layout_generate_xml_before>
            <observers>
                <add_new_layout>
                    <class>test/observer</class>
                    <method>addNewLayout</method>
                </add_new_layout>
            </observers>
        </controller_action_layout_generate_xml_before>
    </events>
</frontend>

这是Observer.php

public function addNewLayout($observer){
    $layout = $observer->getEvent()->getLayout();
    $update = $layout->getUpdate();

    //$action = $observer->getEvent()->getAction();
    //$fullActionName = $action->getFullActionName();
    //in case you're going to add some conditional (apply these new layout xml on these action or other things, you can modify it by yourself)

    //here is the pieces of layout xml you're going to load (you get it from database)
    $xml = "<reference name='root'><remove name='footer'></remove></reference>";
    $update->addUpdate($xml);

    return;
}
于 2012-08-04T17:23:15.377 回答
0

另一种可能性是使用core_layout_update_updates_get_after-event 和占位符(不存在)布局 xml:

<frontend>
    <layout>
        <updates>
            <foobar>
                <file>foo/bar.xml</file>
            </foobar>
        </updates>
    </layout>
    <events>
        <core_layout_update_updates_get_after>
            <observers>
                <foobar>
                    <type>singleton</type>
                    <class>foobar/observer</class>
                    <method>coreLayoutUpdateUpdatesGetAfter</method>
                </foobar>
            </observers>
        </core_layout_update_updates_get_after>
    </events>
</frontend>

观察者中的示例 PHP:

/**
 * Event dispatched when loading the layout
 * @param Varien_Event_Observer $observer
 */
public function coreLayoutUpdateUpdatesGetAfter($observer)
{
    /** @var Mage_Core_Model_Config_Element $updates */
    if (Mage::getStoreConfig('foobar/general/enabled')) {
        $file = Mage::getStoreConfig('foobar/general/layout_xml');
        if (!empty($file)) {
            $updates = $observer->getUpdates();
            if ($updates->foobar) {
                $updates->foobar->file = $file;
            }
        }
    }
}
于 2015-10-20T08:04:36.823 回答