我在 zend 框架中创建了一个插件,并在 bootstrap.php 中注册了这个插件。但我的页面显示错误
在 bootstrap.php 文件中找不到类“Application_Plugin_CheckAuthentication”。
我的插件注册码如下:
function _initViewHelpers() {
$frontController = Zend_Controller_Front::getInstance();
$frontController->registerPlugin(new Application_Plugin_CheckAuthentication());
}
我认为这没有占用插件文件夹。任何人都可以帮忙吗?
谢谢。