Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <config>
  3. <modules>
  4. <Mymodule_Page>
  5. <active>true</active>
  6. <codePool>local</codePool>
  7. <depends>
  8. <Mage_Page />
  9. </depends>
  10. </Mymodule_Page>
  11. </modules>
  12. </config>
  13.  
  14. <?xml version="1.0"?>
  15. <config>
  16. <modules>
  17. <Mymodule_Page>
  18. <version>1.0</version>
  19. </Mymodule_Page>
  20. </modules>
  21. <global>
  22. <blocks>
  23. <page>
  24. <rewrite>
  25. <html_pager>Mymodule_Page_Block_Html_Pager</html_pager>
  26. </rewrite>
  27. </page>
  28. </blocks>
  29. </global>
  30. </config>
  31.  
  32. <?php
  33.  
  34. class Mymodule_Page_Block_Html_Pager extends Mage_Page_Block_Html_Pager
  35. {
  36.  
  37. public function __construct()
  38. {
  39. echo 1;
  40. exit;
  41. }
  42.  
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement