我已经包含了插件 SecurityCheck.php (Login_Plugin_SecurityCheck) in bootstrap.php
。它在第 9 行给出错误-> Call to undefined method Zend_Application::getResource() in Bootstrap.php
。下面是我的代码。
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function _initPlugins()
{
$bootstrap = $this->getApplication();
$bootstrap->bootstrap('frontcontroller');
$front = $bootstrap->getResource('frontcontroller');
$front->registerPlugin(new Login_Plugin_SecurityCheck());
}
}
如何解决这个错误。