コントローラーAccountControllerをオーバーライドする方法


12

メソッドコントローラーをオーバーライドする必要があります

Core/Mage/Customer/controllers/AccountController.php 

新しいメソッドを追加します。編集するこのコントローラーは間違っているため、オーバーライドする必要があります。

プロジェクト要件によると、コントローラーは次の場所にある必要があります。

local/New/Mage/Customer/controllers/AccountController.php 

これを行うには、ファイル構成を作成しますがcustomer/account/testcustomer/account /ajaxaddresssは応答せず、customer/account/loginオーバーライドされません。この実装を手伝ってください。

app / app / etc / modules / New_Mage_Customer.xml

<?xml version="1.0"?>
<config>
 <modules>
      <New_Mage_Customer>
           <active>true</active>
           <codePool>local</codePool>
      </New_Mage_Customer>
  </modules>
</config>

app / code / local / New / Mage / Customer / etc / config.xml

<?xml version="1.0"?>
<config>
    <modules>
        <New_Mage_Customer>
            <version>0.0.1</version>
        </New_Mage_Customer>
    </modules>
    <frontend>
        <routers>
            <customer>
                <args>
                    <modules>
                        <new_customer before="Mage_Customer">New_Mage_Customer</new_customer>
                    </modules>
                </args>
            </customer>
        </routers>
    </frontend>
</config>

app / code / local / New / Mage / Customer / controllers / AccountController.php

<?php

/**
 * Customer account controller
 */
require_once 'Mage/Customer/controllers/AccountController.php';

class New_Mage_Customer_AccountController extends Mage_Customer_AccountController {

    public function ajaxAction() {
        echo 'ajax!!';
    }

    public function testAction() {
        echo 'test222';
    }

    public function loginAction() {
        echo 'index';
    }

}

ありがとう!


ここで確認してください(magento.stackexchange.com/questions/91413/...
Mineshパテル

回答:


22

ファイル名はapp / etc / modules / New_Mage.xmlになります

<?xml version="1.0"?>
<config>
 <modules>
      <New_Mage>
           <active>true</active>
           <codePool>local</codePool>
      </New_Mage>
  </modules>
</config>

ではアプリ/コード/ローカル/新/メイジの/ etc / config.xmlに

<?xml version="1.0"?>
<config>
    <modules>
        <New_Mage>
            <version>0.0.1</version>
        </New_Mage>
    </modules>
    <frontend>
        <routers>
            <customer>
                <args>
                    <modules>
                        <New_Mage before="Mage_Customer">New_Mage</New_Mage>
                    </modules>
                </args>
            </customer>
        </routers>
    </frontend>
</config>

コントローラーは app / code / local / New / Mage / controllers / AccountController.phpになります

/**
 * Customer account controller
 */
require_once Mage::getModuleDir('controllers', 'Mage_Customer') . DS . 'AccountController.php';

class New_Mage_AccountController extends Mage_Customer_AccountController {

    public function ajaxAction() {
        echo 'ajax!!';
    }

    public function testAction() {
        echo 'test222';
    }

    public function loginAction() {
        echo 'index';
    }

}

参照


これはcustomer、以下を含むすべてのリクエストを上書きしませんexample.com/customer/address/new/か?何のアドレスコントローラは、この新しいモジュールに存在しない場合や、すべて/customer/address/*の要求は現在404う
ニック・ローランド
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.