【发布时间】:2015-05-27 08:36:57
【问题描述】:
我正在尝试覆盖Mage/Contacts/IndexController.php
我在本地创建了一个文件夹并创建了Mynamespace/CustomContacts/controllers/IndexController.php
<?php
require_once 'Mage/Contacts/controllers/IndexController.php';
class Mynamespace_CustomContacts_IndexController extends Mage_Contacts_IndexController {
protected function indexAction () {
die;
}
}
我也把这段代码放在Mynamespace/CustomContacts/etc/config.xml
<config>
<frontend>
<routers>
<contacts>
<args>
<modules>
<Mynamespace_CustomContacts before="Mage_Contacts">Mynamespace_CustomContacts</Mynamespace_CustomContacts>
</modules>
</args>
</contacts>
</routers>
</frontend>
</config>
我清理了缓存,但我死了;不工作,
感谢您的帮助
【问题讨论】:
标签: php magento magento-1.9