Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <config>
  3. <modules>
  4. <Practice_ControllerTest>
  5. <version>0.0.1</version>
  6. </Practice_ControllerTest>
  7. </modules>
  8.  
  9. <frontend>
  10. <routers>
  11. <test_controller>
  12. <use>Standard</use>
  13. <args>
  14. <module>Practice_ControllerTest</module>
  15. <frontName>requestflowtest</frontName>
  16. </args>
  17. </test_controller>
  18. </routers>
  19. </frontend>
  20.  
  21. </config>
  22.  
  23. <?php
  24.  
  25. class Practice_ControllerTest_IndexController extends Mage_Core_Controller_Front_Action {
  26.  
  27.  
  28.  
  29. public function indexAction(){
  30. echo '<h1>Hello World</h1>';
  31. }
  32.  
  33.  
  34.  
  35.  
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement