Мені потрібно перекрити метод Controller
Core/Mage/Customer/controllers/AccountController.php
і додати новий метод. Оскільки цей контролер редагувати неправильно - його слід відмінити.
Відповідно до вимог проекту, перевірка контролера повинна бути на
local/New/Mage/Customer/controllers/AccountController.php
Щоб зробити це, створіть файл конфігурації, але адреси customer/account/test
, customer/account
/ajax
не відповіла, і customer/account/login
він не перевизначений. Будь ласка, допоможіть у цій реалізації.
app / app / тощо / модулі / 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 / тощо / 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>
додаток / код / локальний / Новий / Mage / Клієнт / контролери / 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';
}
}
Дякую!