0

我有一个包含三个模块的应用程序defaultdisciplinesplans。在disciplines我有一个在这个模块中工作正常的 dbtable,但是如果我想在plans里面的模块中使用 dbtable,plans_dbtable我会得到

在第 43 行的 C:\xampp\htdocs\proiect_mps\application\modules\plans\models\DbTable\Plans.php 中找不到类 'Disciplines_Model_DbTable_Disciplines'。

Require_once 和 include 不能解决问题。我编写了 Disciplines_Boostrap 和 Plans_Bootstrap 类。但它不起作用。有任何想法吗?

class Plans_Model_DbTable_Plans extends Zend_Db_Table_Abstract
{
    ...
    public function addPlan(
        $year,
        $name,
        $code,
        $domain,
        $specialization,
        $years)
    {
     
       // Id-ul disciplinei
       $id_discipline = 0;
       $discipline = new Disciplines_Model_DbTable_Disciplines();
       ....
    }
    ...
}
    
4

2 回答 2

0

由于您使用的是 Zend,因此我不建议您将 require_once 作为最佳答案。基本上,如果您的配置很好,则不需要在任何地方使用 require_once。这可能会有所帮助:

在文件 application.ini 中

;Module Configuration
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.moduleControllerDirectoryName = "controllers"

; Enables Modules bootstrap resource plugin, so each module directory has a bootstrap.php file
resources.modules = 1

在你的 BootStrap.php 文件中

protected function _initFrontController() {
        // The Zend_Front_Controller class implements the Singleton pattern
        $frontController = Zend_Controller_Front::getInstance();

        // look in the modules directory and automatically make modules out of all folders found
        $frontController->addModuleDirectory(APPLICATION_PATH . '/modules');

        // forces the front controller to forward all errors to the default error controller (may already be false by default)
        $frontController->throwExceptions(false);

        return $frontController;
    }

是的,您需要为每个模块安装 Bootstrap.php

    class Disciplines_Bootstrap extends Zend_Application_Module_Bootstrap
{
    /**
     * This file is ABSOLUTELY NECESSARY to get module autoloading to work.
     * Otherwise calls to "$form = new Module_Form_MyForm()" will fail.
     */


}
于 2012-04-05T10:48:24.853 回答
-1

我想我已经自己解决了。我不得不写

require_once(APPLICATION_PATH.'/modules/disciplines/models/DbTable/Disciplines.php');

代替

require_once '/proiect_mps/application/modules/disciplines/models/DbTable/Disciplines.php';

这也有效:

require_once('/../../../disciplines/models/DbTable/Disciplines.php');

对于我的文件夹结构。

于 2012-04-05T10:45:03.997 回答