Guest User

Untitled

a guest
Oct 15th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. /app/etc/modules/Alanstormdotcom_Weblog.xml:
  2.  
  3. <config>
  4. <modules>
  5. <Alanstormdotcom_Weblog>
  6. <active>true</active>
  7. <codePool>local</codePool>
  8. </Alanstormdotcom_Weblog>
  9. </modules>
  10. </config>
  11.  
  12.  
  13.  
  14. /app/code/local/Alanstormdotcom/Weblog/etc/config.xml:
  15.  
  16. <config>
  17. <modules>
  18. <Alanstormdotcom_Weblog>
  19. <version>0.1.0</version>
  20. </Alanstormdotcom_Weblog>
  21. </modules>
  22. <frontend>
  23. <routers>
  24. <weblog>
  25. <use>standard</use>
  26. <args>
  27. <module>Alanstormdotcom_Weblog></module>
  28. <frontName>weblog</frontName>
  29. </args>
  30. </weblog>
  31. </routers>
  32. </frontend>
  33. </config>
  34.  
  35. /app/code/local/Alanstormdotcom/Weblog/controllers/IndexController.php:
  36.  
  37. <?php
  38. class Alanstormdotcom_Weblog_IndexController extends Mage_Core_Controller_Front_Action {
  39.  
  40. public function testModelAction() {
  41.  
  42. echo('Setup!');
  43. }
  44. }
  45. ?>
Add Comment
Please, Sign In to add comment