Magento 1.5.1:新的客户仪表板块

我想要在我的客户仪表板上创建一个非常简单的新部分。 像www.mymagentosite.com/customer/rid(rid只包含静态链接)。 但是,当我尝试访问www.mymagentosite.com/customer/rid时,我总是会得到一个404 Magento页面(日志文件中没有例外或系统消息)

我错过了什么?

谢谢

我迄今为止所做的是:

- 在/app/code/local/Mage/Customer/Block/Account/Dashboard/Rid.php下创建一个新块

class Mage_Customer_Block_Account_Dashboard_Rid extends Mage_Core_Block_Template
{ 
  public function getCustomer()
  {
      return Mage::getSingleton('customer/session')->getCustomer();
  } 

}

在/app/code/local/Mage/Customer/controllers/RidController.php下创建一个新的控制器

class Mage_Customer_RidController extends Mage_Core_Controller_Front_Action
{
  protected function _getSession()
  {
    return Mage::getSingleton('customer/session');
  }

  public function preDispatch()
  {
    parent::preDispatch();

    if (!Mage::getSingleton('customer/session')->authenticate($this)) {
        $this->setFlag('', 'no-dispatch', true);
    }
  }

  public function indexAction()
  {
    if (count($this->_getSession()->getCustomer()->getAddresses())) {
        $this->loadLayout();
        $this->_initLayoutMessages('customer/session');
        $this->_initLayoutMessages('catalog/session');

        $block = $this->getLayout()->getBlock('rid');
        if ($block) {
            $block->setRefererUrl($this->_getRefererUrl());
        }
        $this->renderLayout();
    } else {
        $this->getResponse()->setRedirect(Mage::getUrl('*/*/new'));
    }
  }
}

- 在/app/code/local/Mage/Customer/Helper/Rid.php下创建一个新的帮手

class Mage_Customer_Helper_Rid extends Mage_Core_Helper_Abstract
{

  public function getRenderer($renderer)
  {
    if(is_string($renderer) && $className = Mage::getConfig()->getBlockClassName($renderer)) {
        return new $className();
    } else {
        return $renderer;
    }
  }

}

- 编辑/app/design/frontend/default/MYTHEME/layout/customer.xml文件

<customer_account_index translate="label">
    <label>Customer My Account Dashboard</label>
    <update handle="customer_account"/>
    <!-- EXISTING CODE -->
    <reference name="my.account.wrapper">
    <!-- EXISTING CODE -->
   <block type="customer/account_dashboard_rid" name="rid" as="rid" 
              template="customer/account/dashboard/rid.phtml"></block>
        </block>
    </reference>
</customer_account_index>

<customer_rid_index translate="label">
    <label>RID</label>
    <!-- Mage_Customer -->
    <update handle="customer_account"/>
    <reference name="my.account.wrapper">
        <block type="customer/rid" name="address_book" 
               template="customer/account/dashboard/rid.phtml"/>
    </reference>
</customer_rid_index>

-create /app/design/frontend/default/MYTHEME/template/customer/account/dashboard/rid.phtml


你需要告诉Magento使用你的控制器而不是核心:

“这里需要注意的一个重要关键是,通过控制器,Magento不会像块和模型那样自动加载它们。”

http://prattski.com/2010/06/24/magento-overriding-core-files-blocks-models-resources-controllers/

等/ config.xml中

<config>
    <frontend>
        <routers>
            <checkout>
                <args>
                    <modules>
                         <My_Module before="Mage_Checkout">My_Module_Checkout</My_Module>
                    </modules>
                </args>
            </checkout>
        </routers>
    </frontend>
</config>
链接地址: http://www.djcxy.com/p/65175.html

上一篇: Magento 1.5.1: new customer dashboard block

下一篇: Run a PostgreSQL .sql file using command line arguments