问题空间
我正在尝试使用 magento 中的观察者根据请求中的参数完全替换给定请求的整个布局。
我面临的问题是 Magento 仍在尝试加载与我在 Observer 中指定的不同的根块模板(特别是产品页面的“frontend/base/default/template/page/1column.phtml”后端设计选项卡中配置的模板使用的默认根块模板)。因为它没有使用我指定的布局,所以它在 PHP 中试图加载主题中不存在的模板时死掉了。
任何指导表示赞赏。
注意:我没有使用 CMS 页面来测试这个概念,因为它们加载了后端指定的自己的模板。我创建了一个测试产品并正在使用它的产品页面。通过请求以下 URL 进行测试:http://mymagentosite.com/test-product?ajax=1
可能的问题
- 我可能没有听正确的事件来完全替换布局。文档很少,所以我根据其他 Stack Overflow 对布局问题的回答进行了猜测。
- 布局元素的文件夹结构对我来说似乎是巫术,因为我发现关于该主题的不同意见(例如 page.xml 与 local.xml)
执行
我创建了一个带有观察者的模块和一个非常小的布局,如下所示:
模块文件夹结构
app
├── code
│ └── local
│ └── MyCompany
│ └── MyModule
│ ├── etc
│ │ └── config.xml
│ └── Model
│ └── Observer.php
├── design
│ └── frontend
│ └── myTheme
│ └── default
│ ├── layout
│ │ └── local.xml
│ └── template
│ └── test.phtml
└── etc
└── modules
└── MyCompany_MyModule.xml
配置文件
<!-- language: lang-xml -->
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<MyCompany_MyModule>
<version>0.1.0.0</version>
</MyCompany_MyModule>
</modules>
<global>
<events>
<controller_action_layout_generate_xml_before>
<observers>
<myCompany_myModule_model_observer>
<type>singleton</type>
<class>MyCompany_MyModule_Model_Observer</class>
<method>changeRequestLayout</method>
</myCompany_myModule_model_observer>
</observers>
</controller_action_layout_generate_xml_before>
</events>
</global>
</config>
观察者.php
<!-- language: lang-php -->
<?php
class MyCompany_MyModule_Model_Observer
{
public function changeRequestLayout($observer)
{
if ($observer->getAction()->getRequest()->isAjax()) {
Mage::getDesign()->setArea('frontend')->setPackageName('myTheme')->setTheme('default');
}
}
}
本地.xml
<!-- language: lang-xml -->
<?xml version="1.0" encoding="UTF-8"?>
<layout version="0.1.0.0">
<default>
<block type="page/html" name="root" output="toHtml" template="test.phtml" />
</default>
</layout>
测试.phtml
<!-- language: lang-html -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Testing, testing...1...2...3...</title>
<style type="text/css">
body {
background-color:#f00;
}
</style>
</head>
<body>
<h1>This is a test of the Magento layout system. This is only a test. If this were not a test, real content would follow.</h1>
</body>
</html>
MyCompany_MyModule.xml
<!-- language: lang-xml -->
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<MyCompany_MyModule>
<active>true</active>
<codePool>local</codePool>
</MyCompany_MyModule>
</modules>
</config>