我添加了插件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());
}
}
如何解决此错误。
答案 0 :(得分:0)
试试这个
protected function _initPlugins() {
$this->bootstrap('frontController')->getResource('frontController')->registerPlugin(new Login_Plugin_SecurityCheck());
}
前控制器的C应该是资本。