I’m developing a modular application with Zend Framework and I find that I use a lot of view helpers that are common across all my modules, I would like to have the following structure work, where I have a central location of view helpers to use in any module plus each module having its own view helpers, is this possible?
APPLICATION_PATH
/modules/module1/views/helpers
/modules/module2/views/helpers
/modules/module3/views/helpers
/views/helpers <-- central location for all modules
Thank you joellord for your help, based on the information given by joellord I was able to load view helpers from a central location plus the view helpers located in each of my modules. I added the following to my main application bootstrap file: