1
application
|-Payment
| | +--Item
| |   +---Footer.php
| +--Manager.php
|-Boostrap.php

在 application/Boostrap.php 我想像这样初始化支付模块:

protected function _initPaymentManager()
{
    $manager = Payment_Manager::getInstance();  
    $manager->registerHandler(new Payment_Item_Footer());   
}

但是框架还没有加载支付模块。如何在 application/Bootstrap.php 中调用 Payment 模块中的类?

4

1 回答 1

1

要确保首先加载模块资源,请添加:

$this->bootstrap('modules');

开始你的_initPaymentManager方法。

您还需要Bootstrap.phpapplication/Payment/文件夹中。

于 2012-04-24T08:45:38.457 回答