Override Magento Contacts Controller

后端 未结 4 428
自闭症患者
自闭症患者 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:36

    IndexController.php file ( local/your_company/your_block_name/controllers/

    local/your_company/your_block_name/etc/config.xml

    
                    
                        
                            IGN_Siteblocks
                        
                    
                
    

    And Let`s go to create your sample code like this :

    class IGN_Siteblocks_IndexController extends Mage_Contacts_IndexController
    {
       public function createAction()
    {
        return $this->_redirect('noroute');
    }
    }
    

提交回复
热议问题