Bir denetleyiciyi yeniden yazmak yerine (lütfen oh lütfen bunu yapmayın), bunun yerine, addProduct
sınırı hesaba katmak için yöntemi yeniden yazın :
class YourCompany_YourModule_Model_Cart extends Mage_Checkout_Model_Cart
{
public function addProduct($productInfo, $requestInfo=null){
if($this->getItemsCount()>1){
Mage::throwException(Mage::helper('checkout')->__('Cannot add item - cart quantity would exceed checkout the limit of %s per person.', 1));
}
parent::addProduct($productInfo, $requestInfo);
}
}
Süslü olmak istiyorsanız, 1
yukarıdakileri değiştirin Mage::getStoreConfig('checkout/options/max_cart_qty)
ve modülünüzün config.xml dosyasını ayarlayın:
<default>
<checkout>
<options>
<max_cart_qty>1</max_cart_qty>
</options>
</checkout>
</default>
Bu değer artık XML değeri üzerinden kontrol ediliyor. Gerçekten, gerçekten süslü olmak istiyorsanız , bunu yeni modülünüzün system.xml dosyasına ekleyin:
<config>
<sections>
<checkout>
<groups>
<options>
<fields>
<max_cart_qty translate="label">
<label>Maximum Quantity Allowed in Cart (total qty)</label>
<frontend_type>text</frontend_type>
<sort_order>100</sort_order>
<show_in_default>1</show_in_default>
</max_cart_qty>
</fields>
</options>
</groups>
</checkout>
</sections>
</config>
<depends>Mage_Checkout</depends>
Önceden tanımlanmış sistem yapılandırmasını geri almak için modülünüze bir ayar yapmanız gerektiğini unutmayın .
checkout_cart_product_add_before
orada özel bir etkinlik başlatmaktır