Magento无法覆盖控制器的动作

时间:2015-10-02 13:40:19

标签: php magento magento-1.8

我需要覆盖stockAction() AddController.php中的code/core/Mage/ProductAlert/controllers。所以我搜索了很多,看看如何继续,并得到了这个:

/etc/modules/Totem_ProductAlert.xml

<?xml version="1.0"?>
<config>
<modules>
    <Totem_ProductAlert>
        <active>true</active>
        <codepool>local</codepool>
    </Totem_ProductAlert>
</modules>
</config>

/code/local/Totem/ProductAlert/etc/config.xml

<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
    <Totem_ProductAlert>
        <version>0.0.1</version>
    </Totem_ProductAlert>
</modules>

<frontend>
    <routers>
        <productalert>
            <args>
                <modules>
                    <Totem_ProductAlert before="Mage_ProductAlert">Totem_ProductAlert</Totem_ProductAlert>
                </modules>
            </args>
        </productalert>
    </routers>
</frontend>
</config>

/code/local/Totem/ProductAlert/controllers/AddController.php

class Totem_ProductAlert_AddController extends Mage_ProductAlert_AddController
{
  public function stockAction()
  {
    Mage::log('test', null, 'Test.log');
  }

但是没有覆盖操作,也没有创建Test.log。

有人知道我搞砸了吗?

感谢。

2 个答案:

答案 0 :(得分:0)

试试这个

<?xml version="1.0"?>
<config>
  <modules>
    <Totem_ProductAlert>
      <active>true</active>
      <codePool>local</codePool>
      <version>0.1.0</version>
    </Totem_Custom>
  </modules>
</config>

<强> config.xml中

<?xml version="1.0"?>
<config>
  <modules>
    <Totem_ProductAlert>
      <version>0.1.0</version>
    </Totem_ProductAlert>
  </modules>
  <frontend>
    <routers>
      <productalert>
        <use>standard</use>
          <args>
            <module>Totem_ProductAlert</module>
            <frontName>productalert</frontName>
          </args>
      </productalert>
    </routers>
  </frontend>
  <global>
        <rewrite>        
            <totem_productalert_productalert_addcontroller>
                <from><![CDATA[#^/productalert/add/#]]></from> <!-- Mage_ProductAlert_AddController  -->
                <to>/productalert/productalert_add/</to> <!-- Totem_ProductAlert_ProductAlert_AddController  -->
            </totem_productalert_productalert_addcontroller>
        </rewrite>
    <helpers>
      <productalert>
        <class>Totem_ProductAlert_Helper</class>
      </productalert>
    </helpers>
  </global>
  <admin>
    <routers>
      <productalert>
        <use>admin</use>
        <args>
          <module>Totem_ProductAlert</module>
          <frontName>admin_productalert</frontName>
        </args>
      </productalert>
    </routers>
  </admin>
</config> 

<强>控制器

    <?php
    require_once "Mage/ProductAlert/controllers/AddController.php";  
    class Totem_ProductAlert_ProductAlert_AddController extends Mage_ProductAlert_AddController{
     public function stockAction(){
        Mage::log('test', null, 'Test.log');
     }
   }

答案 1 :(得分:0)

您的代码中存在问题:

  • Totem_ProductAlert.xml 中的syntax issue<codepool>应该 是<codePool> .p应该是大写字母。

<?xml version="1.0"?>
<config>
<modules>
    <Totem_ProductAlert>
        <active>true</active>
        <codePool>local</codePool>
        <depends>Mage_ProductAlert</depends>
    </Totem_ProductAlert>
</modules>
</config>

  • 需要正确调用 Core AddController.php Totem_ProductAlert_AddController

<?php

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 * Description of AddController
 *
 * @author work
 */
require_once Mage::getModuleDir('controllers', 'Mage_ProductAlert').DS.'AddController.php';
class Totem_ProductAlert_AddController extends Mage_ProductAlert_AddController
{
  public function stockAction()
  {
  
    Mage::log('test', null, 'Test.log',true);
  }
}