我从产品页面中删除了评论表单,因为我使用了一个扩展程序,该扩展程序向客户发送了一封电子邮件,其中包含指向特定 URL 的链接以及他们购买的产品的评论表单。
但是,如果我在商店外卖了产品,我需要一个或多或少的隐藏页面(www.shop.com/productname/review)和评论表。
我使用 Magento 1.6
我从产品页面中删除了评论表单,因为我使用了一个扩展程序,该扩展程序向客户发送了一封电子邮件,其中包含指向特定 URL 的链接以及他们购买的产品的评论表单。
但是,如果我在商店外卖了产品,我需要一个或多或少的隐藏页面(www.shop.com/productname/review)和评论表。
我使用 Magento 1.6
我希望你对 Magento 的内部运作有点熟悉,因为这绝对不适合初学者:)。
首先,您需要从观察controller_front_init_router
事件开始,如下所示:
<global>
<events>
<controller_front_init_routers>
<observers>
<controller_noroute>
<type>singleton</type>
<class>Namespace_Module_Controller_Router</class>
<method>initControllerRouters</method>
</controller_noroute>
</observers>
</controller_front_init_routers>
</events>
</global>
现在,如果您从事开发工作,您会注意到我在这里使用控制器作为观察者有点不合常规。对我来说,它清理了一些东西。但是,谁知道,可能有更好的方法来做到这一点?
这里是控制器。如您所见,我们有效地将路由器插入到路由器匹配列表的末尾(default
如果您查看,就在路由器之前Mage_Core_Controller_Varien_Front
)。
class Namespace_Module_Controller_Router extends Mage_Core_Controller_Varien_Router_Abstract
{
public function initControllerRouters($observer)
{
/* @var $front Mage_Core_Controller_Varien_Front */
$front = $observer->getFront();
$front->addRouter('Namespace_Module', $this);
}
public function match(Zend_Controller_Request_Http $request) {
$identifier = trim($request->getPathInfo(), '/');
$parts = explode("/", $identifier);
if (count($parts) > 1) {
$productKey = $parts[0];
$action = $parts[1];
if (count($parts) > 2 && (count($parts)%2) == 0) {
for ($i = 2; $i < count($parts); $i++) {
$request->setParam($parts[$i], $parts[$i++]);
}
}
$product = Mage::getModel('catalog/product')->loadByAttribute($productKey, 'url_key');
if ($product->getId()) {
$request->setModuleName('your_module')
->setControllerName('index')
->setActionName($action);
$request->setAlias(Mage_Core_Model_Url_Rewrite::REWRITE_REQUEST_PATH_ALIAS, $identifier);
return true;
} else {
// Redirect to an error.
return true;
}
}
return false;
}
}