我只是想覆盖app / code / core / Mage / Contacts / controllers / IndexController.php。但我想我在某个地方犯了错误。我已经在stackOverflow中经历了所有类似的问题。并遵循这一点。但问题仍然存在。
这是我的app / code / local / Namespace / Customcontacts / controllers / IndexController.php
<?xml version="1.0"?>
<config>
<modules>
<Namespace_Customcontacts>
<version>1.0.1</version>
</Namespace_Customcontacts>
</modules>
<frontend>
<routers>
<customcontacts>
<args>
<modules>
<Namespace_Customcontacts before="Mage_Contacts">Namespace_Customcontacts</Namespace_Customcontacts>
</modules>
</args>
</customcontacts>
</routers>
</frontend>
</config>
我刚刚将app / code / core / Mage / Contacts / controllers / IndexController.php中的代码复制到app / code / local / Namespace / Customcontacts / controllers / IndexController.php并在函数indexAction中打印“Hello”( )。
<?php
class Namespace_Customcontacts_IndexController extends Mage_Contacts_IndexController
{
const XML_PATH_EMAIL_RECIPIENT = 'contacts/email/recipient_email';
const XML_PATH_EMAIL_SENDER = 'contacts/email/sender_email_identity';
const XML_PATH_EMAIL_TEMPLATE = 'contacts/email/email_template';
const XML_PATH_ENABLED = 'contacts/contacts/enabled';
public function preDispatch()
{
parent::preDispatch();
if( !Mage::getStoreConfigFlag(self::XML_PATH_ENABLED) ) {
$this->norouteAction();
}
}
public function indexAction()
{
echo "Hello";
// $this->loadLayout();
// $this->getLayout()->getBlock('contactForm')
// ->setFormAction( Mage::getUrl('*/*/post', array('_secure' => $this->getRequest()->isSecure())) );
// $this->_initLayoutMessages('customer/session');
// $this->_initLayoutMessages('catalog/session');
// $this->renderLayout();
}
public function postAction()
{
$post = $this->getRequest()->getPost();
if ( $post ) {
$translate = Mage::getSingleton('core/translate');
/* @var $translate Mage_Core_Model_Translate */
$translate->setTranslateInline(false);
try {
$postObject = new Varien_Object();
$postObject->setData($post);
$error = false;
if (!Zend_Validate::is(trim($post['name']) , 'NotEmpty')) {
$error = true;
}
if (!Zend_Validate::is(trim($post['comment']) , 'NotEmpty')) {
$error = true;
}
if (!Zend_Validate::is(trim($post['email']), 'EmailAddress')) {
$error = true;
}
if (Zend_Validate::is(trim($post['hideit']), 'NotEmpty')) {
$error = true;
}
if ($error) {
throw new Exception();
}
$mailTemplate = Mage::getModel('core/email_template');
/* @var $mailTemplate Mage_Core_Model_Email_Template */
$mailTemplate->setDesignConfig(array('area' => 'frontend'))
->setReplyTo($post['email'])
->sendTransactional(
Mage::getStoreConfig(self::XML_PATH_EMAIL_TEMPLATE),
Mage::getStoreConfig(self::XML_PATH_EMAIL_SENDER),
Mage::getStoreConfig(self::XML_PATH_EMAIL_RECIPIENT),
null,
array('data' => $postObject)
);
if (!$mailTemplate->getSentSuccess()) {
throw new Exception();
}
$translate->setTranslateInline(true);
Mage::getSingleton('customer/session')->addSuccess(Mage::helper('contacts')->__('Thanks for getting in touch, we will reply to your message as soon as we can.'));
$this->_redirect('*/*/');
return;
} catch (Exception $e) {
$translate->setTranslateInline(true);
Mage::getSingleton('customer/session')->addError(Mage::helper('contacts')->__('Unable to submit your request. Please, try again later'));
$this->_redirect('*/*/');
return;
}
} else {
$this->_redirect('*/*/');
}
}
}
请帮我解决这个问题..
答案 0 :(得分:0)
首先检查您的模块是否已注册。 `
system-&gt; configuration-&gt; advance-&gt;禁用模块输出
然后,在你的config.xml文件中你有拼写错误
<args>
<modules>
<Namesapce_Customcontacts before="Mage_Contacts">Namesapce_Customcontacts</Namesapce_Customcontacts>
</modules>
</args>
应该是
<args>
<modules>
<Namesapce_Customcontacts before="Mage_Contacts">Namesapce_Customcontacts</Namespace_Customcontacts>
</modules>
</args>
在模块部分
下轻松地进行节点更改您需要将控制器文件包含为
<?php
require_once 'Mage_Contacts_IndexController';
class Namespace_Customcontacts_IndexController extends Mage_Contacts_IndexController
{
因为控制器没有自动加载