Bir yöntem Denetleyicisini geçersiz kılmam gerekiyor
Core/Mage/Customer/controllers/AccountController.php
ve yeni bir yöntem ekleyin. Düzenlenecek bu denetleyici yanlış olduğundan - geçersiz kılınmalıdır.
Proje gerekliliklerine göre geçersiz kılma kontrolörü
local/New/Mage/Customer/controllers/AccountController.php
Bunu yapmak için, bir dosya yapılandırma oluşturmak, ama adresleri customer/account/test
, customer/account
/ajax
yanıt vermedi ve customer/account/login
bu geçersiz edilmez. Lütfen bu uygulamada yardım edin.
Uygulamanın / 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>
Uygulamanın / kod / yerel / Yeni / Büyücü / Müşteri / 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>
Uygulamanın / kod / yerel / Yeni / Büyücü / Müşteri / kontrolörleri / 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';
}
}
Teşekkürler!