Magento Controller Rewrite - Magento 控制器重写

1.首页我们找到需要重写的module,然后打开module 的配置文件,我们以Customer Module为例:app/code/local/Dipper/Custmer/etc/config.xml

我们把customer/account 重写为Dipper/Customer Module 下Account Controller.配置如下

 <global>

 <rewrite>

 <dipper_customer_account>

 <from><![CDATA[#^/account/#]]></from>

 <to>/customer/account/</to>

 </dipper_customer_account>

 </rewrite>

 </global>

然后我们在Customer Module 下新建AccountController.php 里面code如下

require_once Mage::getModuleDir('controllers', 'Mage_Customer').DS.'AccountController.php';

//这种动态的写法比较好

class Dipper_Customer_AccountController extends Mage_Customer_AccountController

{


 public function IndexAction()
 {
die("Hello World!");
 }


}



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章