Advertisement
andhiirawan

Magento: Checkout - etc - config.xml

Nov 24th, 2014 (edited)
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.57 KB | None | 0 0
  1. <!--Path app\code\local\ABC\Checkout\etc\config.xml-->
  2. <!--http://magento.stackexchange.com/questions/45132/adding-a-product-to-the-cart-via-querystring-using-sku-->
  3. <?xml version="1.0" ?>
  4. <config>
  5.     <frontend>
  6.         <routers>
  7.             <checkout>
  8.                 <args>
  9.                     <modules>
  10.                         <abc_checkout before="Mage_Checkout">ABC_Checkout</abc_checkout>
  11.                     </modules>
  12.                 </args>
  13.             </checkout>
  14.         </routers>
  15.     </frontend>
  16.    <global>
  17.     <helpers>
  18.         <checkout>
  19.             <rewrite>
  20.                 <cart>ABC_Checkout_Helper_Cart</cart>
  21.             </rewrite>
  22.         </checkout>
  23.     </helpers>
  24.   </global>
  25. </config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement