1

我已经包含了插件 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());
    }
}

如何解决这个错误。

4

1 回答 1

0

试试这个

protected function _initPlugins() {
    $this->bootstrap('frontController')->getResource('frontController')->registerPlugin(new Login_Plugin_SecurityCheck());

}

前端控制器的 C 应该是大写的。

于 2012-04-16T06:29:47.993 回答