Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Rob Allen's Blog:
Module specific bootstrapping in ZF2
Mar 08, 2012 @ 16:04:20

Rob Allen has a new post to his blog today looking at bootstrapping specific modules in a Zend Framework 2-based application without having to do the entire set.

Following on from the discussion on modules, we can hook into the event system to do module specific bootstrapping. By this, I mean, if you have some code that you want to run only if the action to be called is within this module, you can hook into the Application's dispatch event to achieve this.

He starts with an example of a basic module (Simple/Module.php) and shows how to define an "onBootstrap" method that calls the "onDispatch" method (when hooked to the event manager) to do some module-specific bootstrap operations. The RouteMatch feature is used to ensure that you're in the right controller/namespace combo to use the module.

tagged: module bootstrap zendframework2 tutorial specific router dispatch

Link:


Trending Topics: