Guest User

Untitled

a guest
Jan 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <config>
  3. <modules>
  4. <HEKA_Catalog>
  5. <active>true</active>
  6. <codePool>local</codePool>
  7. </HEKA_Catalog>
  8. </modules>
  9. </config>
  10.  
  11. <?xml version="1.0"?>
  12. <config>
  13. <modules>
  14. <HEKA_Catalog>
  15. <version>1.0</version>
  16. </HEKA_Catalog>
  17. </modules>
  18.  
  19. <global>
  20. <models>
  21. <catalog>
  22. <rewrite>
  23. <product>HEKA_Catalog_Model_Product</product>
  24. </rewrite>
  25. </catalog>
  26. </models>
  27. </global>
  28. </config>
  29.  
  30. <?php
  31. class HEKA_Catalog_Model_Product extends Mage_Catalog_Model_Product
  32. {
  33. function getDescription(){
  34. $processor = Mage::getModel('core/email_template_filter');
  35. $html = $processor->filter($this->getData('description'));
  36. return $html;
  37. }
  38. }
Add Comment
Please, Sign In to add comment