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?
Plugins are triggered in the same order they are registered. You can override this behavior by passing a “stack index” when registering Plugins.
The OO way:
The application.ini way:
Source: Zend Controller Plugins in ZF