有没有办法使用ZEND框架为不同的模块制作不同的bootstrap文件

时间:2015-08-14 10:25:31

标签: php zend-framework

现在我正在使用ZF1,我不想在启动时加载与不同模块相关联的功能。我想为此制作不同的bootstrap文件。

enter image description here

公共引导文件扩展了Zend_Application_Bootstrap_Bootstrap

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap

1 个答案:

答案 0 :(得分:1)

每个模块可能都有自己的bootstrap.php文件。将类定义更改为:

class Admin_Bootstrap extends Zend_Application_Module_Bootstrap

其中Admin是模块文件夹的名称。

现在,您可以为此模块提供独立的引导程序。