无法访问资源插件

时间:2012-04-16 06:25:17

标签: zend-framework

我添加了插件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());
    }
}

如何解决此错误。

1 个答案:

答案 0 :(得分:0)

试试这个

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

}
前控制器的C应该是资本。