Guest User

Untitled

a guest
Jan 19th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. require_once 'Mage/Checkout/controllers/OnepageController.php';
  2. class MarlowWhite_Checkoutmods_OnepageController extends Mage_Checkout_OnepageController
  3. {
  4. public function indexAction()
  5. {
  6. print "hi";die();
  7. parent::indexAction();
  8. }
  9. }
  10. <config>
  11.  
  12. <frontend>
  13. <routers>
  14. <checkoutmods>
  15. <use>standard</use>
  16. <args>
  17. <module>MarlowWhite_Checkoutmods</module>
  18. <frontName>contentcart</frontName>
  19. </args>
  20. </checkoutmods>
  21. <checkout>
  22. <use>standard</use>
  23. <args>
  24. <modules>
  25. <checkoutmods_marlowwhite before="Mage_Checkout">MarlowWhite_Checkoutmods</checkoutmods_marlowwhite>
  26. </modules>
  27. </args>
  28. </checkout>
  29. </routers>
  30. </frontend>
  31. ....
  32. </config>
Add Comment
Please, Sign In to add comment