当前位置:  开发笔记 > 编程语言 > 正文

如何在所有控制器中集中我的init函数的代码?

如何解决《如何在所有控制器中集中我的init函数的代码?》经验,为你挑选了1个好方法。

我宁愿建议你通过扩展Zend_Controller_Plugin_Abstract来编写一个插件,这是它的目的.

通过这种方式,您无需在控制器中的任何位置执行任何操作.然后,您可以使用注册表访问您的数据...

class My_Controller_Plugin_Acl extends Zend_Controller_Plugin_Abstract
{
    protected $_auth = null;

    protected $_acl = null;

    public function __construct (Zend_Auth $auth, Zend_Acl $acl)
    {
        $this->_auth = $auth;
        $this->_acl = $acl;
    }

    public function preDispatch(Zend_Controller_Request_Abstract $request)
    {
         //some code
    }
}

然后在你的bootstrap.php中

$this->_front->registerPlugin(new My_Controller_Plugin_Layout());

http://framework.zend.com/manual/en/zend.controller.plugins.html



1> Boris Guéry..:

我宁愿建议你通过扩展Zend_Controller_Plugin_Abstract来编写一个插件,这是它的目的.

通过这种方式,您无需在控制器中的任何位置执行任何操作.然后,您可以使用注册表访问您的数据...

class My_Controller_Plugin_Acl extends Zend_Controller_Plugin_Abstract
{
    protected $_auth = null;

    protected $_acl = null;

    public function __construct (Zend_Auth $auth, Zend_Acl $acl)
    {
        $this->_auth = $auth;
        $this->_acl = $acl;
    }

    public function preDispatch(Zend_Controller_Request_Abstract $request)
    {
         //some code
    }
}

然后在你的bootstrap.php中

$this->_front->registerPlugin(new My_Controller_Plugin_Layout());

http://framework.zend.com/manual/en/zend.controller.plugins.html

推荐阅读
mobiledu2402851373
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有