Guest User

Untitled

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