what plugin execute at first on zend framework?
        Posted  
        
            by ulduz114
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by ulduz114
        
        
        
        Published on 2010-03-30T19:03:24Z
        Indexed on 
            2010/03/31
            12:13 UTC
        
        
        Read the original article
        Hit count: 289
        
zend-framework
hello
i registered 2 plugin in my project on zend framework the first one in application.ini this is for change layout resources.frontController.plugins.LayoutSet="App_Plugins_LayoutSet" and second in the registred in the bootstrap
 $fc= Zend_Controller_Front::getInstance();
          $fc->registerPlugin(new App_Plugins_AccessCheck($this->_acl));
2 plugin work fine , i want to know what plugin execute at first , can we change prior's execute for these plugin?
© Stack Overflow or respective owner