1

プラグインを含め SecurityCheck.php (Login_Plugin_SecurityCheck) in bootstrap.phpました。そのエラーが発生しました-> Call to undefined method Zend_Application::getResource() in Bootstrap.php9行目。以下は私のコードです。

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());

}

frontcontroller の C は大文字にする必要があります。

于 2012-04-16T06:29:47.993 に答える