【发布时间】:2016-10-27 17:07:52
【问题描述】:
我只是想覆盖 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( )。
<?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('*/*/');
}
}
}
请帮我解决这个问题..
【问题讨论】:
标签: php magento overriding