Override Magento Contacts Controller

后端 未结 4 422
自闭症患者
自闭症患者 2020-12-21 13:47

I\'m trying to override Mage/Contacts/IndexController.php

I created a folder in local and created Mynamespace/CustomContacts/controllers/IndexCont

4条回答
  •  天命终不由人
    2020-12-21 14:19

    1. Best practices

    Your config.xml file seems like this:

    
    
        
            
                0.1.0
            
        
        
            
                
                    
                        
                            Mynamespace_CustomContacts
                        
                    
                
            
        
    
    

    2. Bad practices

    You can move your controller in app/local/Mage/Contacts/controllers/IndexController.php for a hard override.

    And don't forget to enable your module in xml file in app/etc/modules directory

提交回复
热议问题