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

Robert Basic's Blog:
Loading custom module plugins
Jul 20, 2010 @ 19:04:43

Robert Basic has a quick new post to his blog today showing how to load custom module plugins in your Zend Framework application.

I was trying to load a Front Controller plugin which resides in app/modules/my_module/controllers/plugins/ and not in the “usual” lib/My_App/Plugin/. I want this plugin to be called in every request and I want the plugin file to be under it’s “parent” module.

To solve the problem he added a path to the Zend_Application_Module_Autoloader as a resource and registered it in the front controller. He includes some code to show how it works - a simple bootstrap with two _init functions, one for the news autoloading and another for plugins.

tagged: plugin custom module zendframework autoload bootstrap

Link:


Trending Topics: