- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在通过新模块向 Magento 结帐中添加一个额外的复选框字段,用于订阅时事通讯。
到目前为止,我已将代码添加到我的布局文件 (billing.phtml) 中:
<p>Please untick this box if you do not wish to receive infrequent email updates and newsletters from us. <input type="checkbox" name="billing[is_subscribed]" title="" value="1" id="billing:is_subscribed" class="checkbox" checked="checked" /></p>
我已经扩展了类(app/code/local/Clientname/Checkout/Model/Type/Onepage.php
) - 我只扩展了 savebilling 方法:
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Checkout
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* One page checkout processing model
*/
class Eatyourwords_Checkout_Model_Type_Onepage extends Mage_Checkout_Model_Type_Onepage
{
public function saveBilling($data, $customerAddressId)
{
if (empty($data)) {
return array('error' => -1, 'message' => $this->_helper->__('Invalid data.'));
}
$address = $this->getQuote()->getBillingAddress();
if (!empty($customerAddressId)) {
$customerAddress = Mage::getModel('customer/address')->load($customerAddressId);
if ($customerAddress->getId()) {
if ($customerAddress->getCustomerId() != $this->getQuote()->getCustomerId()) {
return array('error' => 1,
'message' => $this->_helper->__('Customer Address is not valid.')
);
}
$address->importCustomerAddress($customerAddress);
}
} else {
// process billing address and validate form
/* @var $addressForm Mage_Customer_Model_Form */
$addressForm = Mage::getModel('customer/form');
$addressForm->setFormCode('customer_address_edit')
->setEntity($address)
->setEntityType('customer_address')
->setIsAjaxRequest(Mage::app()->getRequest()->isAjax());
// emulate request object
$addressData = $addressForm->extractData($addressForm->prepareRequest($data));
$addressErrors = $addressForm->validateData($addressData);
if ($addressErrors !== true) {
return array('error' => 1, 'message' => $addressErrors);
}
$addressForm->compactData($addressData);
if (!empty($data['save_in_address_book'])) {
$address->setSaveInAddressBook(1);
}
}
// validate billing address
if (($validateRes = $address->validate()) !== true) {
return array('error' => 1, 'message' => $validateRes);
}
$address->implodeStreetAddress();
if (true !== ($result = $this->_validateCustomerData($data))) {
return $result;
}
if (!$this->getQuote()->getCustomerId() && self::METHOD_REGISTER == $this->getQuote()->getCheckoutMethod()) {
if ($this->_customerEmailExists($address->getEmail(), Mage::app()->getWebsite()->getId())) {
return array('error' => 1, 'message' => $this->_customerEmailExistsMessage);
}
}
if (!$this->getQuote()->isVirtual()) {
/**
* Billing address using otions
*/
$usingCase = isset($data['use_for_shipping']) ? (int)$data['use_for_shipping'] : 0;
switch($usingCase) {
case 0:
$shipping = $this->getQuote()->getShippingAddress();
$shipping->setSameAsBilling(0);
break;
case 1:
$billing = clone $address;
$billing->unsAddressId()->unsAddressType();
$shipping = $this->getQuote()->getShippingAddress();
$shippingMethod = $shipping->getShippingMethod();
$shipping->addData($billing->getData())
->setSameAsBilling(1)
->setShippingMethod($shippingMethod)
->setCollectShippingRates(true);
$this->getCheckout()->setStepData('shipping', 'complete', true);
break;
}
}
$this->getQuote()->collectTotals();
if (isset($data['is_subscribed'])) {
$status = Mage::getModel(‘newsletter/subscriber’)->subscribe($data['email']);
}
$this->getQuote()->save();
$this->getCheckout()
->setStepData('billing', 'allow', true)
->setStepData('billing', 'complete', true)
->setStepData('shipping', 'allow', true);
return array();
}
}
特别是在我插入的类的底部:
if (isset($data['is_subscribed'])) {
$status = Mage::getModel(‘newsletter/subscriber’)->subscribe($data['email']);
}
我添加了一个文件来让 Magento 了解该模块 (app/etc/modules/Clientname_Checkout.xml
):
<?xml version="1.0"?>
<config>
<modules>
<Clientname_Checkout>
<active>true</active>
<codePool>local</codePool>
</Clientname_Checkout>
</modules>
</config>
但是,我现在陷入了如何让 Magento 识别和使用我扩展的替代 save_billing 方法的最后一步。我想我需要添加一个文件 /app/code/local/Clientname/config.xml
。
但我不明白如何设置它以便使用新的 savebilling 类而不是原始类。
请问有人可以帮助完成最后一步吗?
谢谢
西蒙
最佳答案
这是 Magento 中类覆盖的教科书示例。您可能知道,Magento 使用一种抽象形式根据代码库中散布的 XML 配置文件的内容来加载类。这意味着我们可以加载模型 Mage_Checkout_Model_Type_Onepage
通过调用 Mage::getModel('checkout/type_onepage')
,使用默认配置。一个非常酷的功能是能够修改模型引用的映射,checkout/type_onepage
到实际的类名。
所以您已经完成了艰苦的工作:编辑模板并更改模型方法。接下来,您需要构建一个小模块来执行类重写。根据类的名称,您将需要以下形式的目录结构:
/app
/etc
/modules
/Eatyourwords_Checkout.xml
/code
/local
/Eatyourwords
/Checkout
/etc
/config.xml
/Model
/Type
/Onepage.php
重写是在模块配置文件 config.xml
中处理的:
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<eyw_c>
<version>1.0</version>
</eyw_c>
</modules>
<global>
<models>
<eyw_c>Eatyourwords_Checkout_Model</eyw_c>
<checkout>
<rewrite>
<type_onepage>Eatyourwords_Checkout_Model_Type_Onepage</type_onepage>
</rewrite>
</checkout>
</models>
</global>
</config>
<modules />
中的内容标签组只是模块的一些标准引导。
在 <models />
部分我们定义了加载任何模型类时使用的命名空间。很像checkout/type_onepage
,我们可以访问 /Model
中的任何模型目录附加 eyw_c/*
.
然后我们打开Mage_Checkout
模型命名空间,<checkout />
,并重写checkout/type_onepage
类(class)。现在,当 Magento 尝试加载 checkout/type_onepage
时它会寻找我们的类(class)。所有其他checkout/*
类(class)将不受影响。它们的类名将以正常方式构造。
接下来我们需要将 Magento 指向我们创建的新模块。你的尝试几乎是正确的。你应该将其命名为Eatyourwords_Checkout.xml
并将其放入 /app/etc/modules
:
<?xml version="1.0"?>
<config>
<modules>
<Eatyourwords_Checkout>
<active>true</active>
<codePool>local</codePool>
<depends>
<Mage_Checkout />
</depends>
</Eatyourwords_Checkout>
</modules>
</config>
..就这样完成了。类被重写。
关于magento - 扩展 Magento OnePage 结帐类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6080333/
Magento 主题和 Magento 皮肤有什么区别?它们和 Magento 模块之间有什么关系? 最佳答案 主题是创建视觉体验的布局、模板、区域设置和/或外观文件的任意组合... 主题由以下任意或
我想在 Magento 之外获得购物车 Block。这是我的代码。 getLocale()->getLocaleCode(); //Solution Mage::getSingleto
我是 Magento 新手,使用 CE 1.7.0.2 开发了一个网站。现在可以上线了,但我遇到了页面加载缓慢的问题。 我的网站产品主页、列表和详细信息页面最初需要 10-13 秒的时间来加载页面,但
我在 magento 网站上工作。我有 4 个类别,其中两个使用其他主题(不是我的特定 magento 主题)。我如何配置我的主题以从我的默认主题而不是基本主题中获取丢失的文件。 谢谢 最佳答案 通常
我遇到了我的 magento 项目的要求,因此我需要为特定客户群的购买提供特别折扣。此折扣必须显示在客户帐户中,如果他们属于该特定组,并且当用户要使用该特定折扣时,必须根据该折扣优惠对该商品的价格进行
我在 Magento 主题开发中找到的大量教程建议从使用空白作为制作您自己的自定义主题的指南开始。很多这些文章已经很旧了,截至当前版本(1.7),情况仍然如此吗? 附言- 除了 Magento 的 o
似乎这应该是一个可以找到的问题,但我找不到它。 magento 数据库中存储的类别 NAME 在哪里?我可以看到 catalog_category_entity有 key ID,然后还有其他 EAV
我知道 magento 会根据需要调整原始产品图像的大小并以不同的大小对其进行多次缓存。 这些 chached 图像存储在哪里(路径)? 当您从缓存管理中刷新图像缓存时,它们会被删除吗? 如果我要手动
我在我的 magento 网上商店中使用这个扩展 http://www.manadev.com/seo-layered-navigation-plus (分层导航) 此扩展适用于简单的产品。 但就我而
我在 Magento 的一家商店下拥有某些产品的批发属性。我想设置它,以便这些特定属性仅出现在产品页面上,如果客户已登录并且他们在批发客户组中。 这可能吗? 最佳答案 像这样的事情应该可以工作,尽管我
和有什么区别和 在 Magento 中? 我将创建一个新模块,我必须决定在这两个事件中的哪一个事件中挂起我的观察者。 最佳答案 类别(和所有其他对象)保存在事务中。事件catalog_categor
好吧,这是一个似乎很容易解决的问题,但它让我望而却步...... 我的 Magento Web 上有一些类别,每个类别都有一些产品。我希望它们显示为 4 列计数,但它始终显示为 3 列计数,如下所示:
我已经在我的网站上添加了一些成员(member)跟踪代码。为了使跟踪工作正常进行,我需要向关联公司提供确认付款的网址。 我正在使用Magento,我不确定该版本,但几年内未对其进行更新。我需要知道订单
我们的网站遇到了问题。 系统 > 配置屏幕仅显示菜单、侧面菜单和页脚。当我们点击侧边菜单选项时,屏幕仍然黑屏,相关信息也没有出现。请看 this link .这就是出现的情况。当我们点击任何侧面菜单选
我想只使用一个 csv 文件来翻译前端 Magento 商店。所以我这样做了: 我创建了一个名为 Translator 的自定义模块。在其 config.xml 中,我放置了以下几行: ....
我添加了自定义订单状态选项。 有谁知道我如何通过API将其设置为自定义值? 最佳答案 感谢Diglin为我指出的正确位置。只是为了正确地给出答案: 您可以使用addComment方法来执行此操作,该方
目前,Magento 处理大规模操作的方式存在问题。无论分页如何,它都会返回一些 JS,其中包含当前集合和过滤器的每个 db id。这是为了支持网格标题中的“全选”与“全选可见”选项。当您的记录数量较
如何收集具有此角色的所有角色(系统->权限->角色)和用户? 谢谢。 最佳答案 获得所有角色 $roles = Mage::getModel('admin/roles')->getCol
如果能在我网站的各种应用程序之间进行通用登录,那将是一种巨大的用户体验。现在,我有一个 Magento 店面和一个 IPS 板社区。我正在尝试将它们集成到我的用户的一个通用登录中。 IPS 板提供多种
我正在为 Magento 社区 1.4.2 版中的时尚客户开发一个网站,作为该项目的一部分,我需要一些定制的主页促销块来展示特定产品或产品类别。为此,我想我会编写自己的小部件,并且除了如何处理图像外,
我是一名优秀的程序员,十分优秀!