-- stav <[EMAIL PROTECTED]> wrote (on Monday, 22 September 2008, 11:49 PM -0700): > I have three modules: admin, default, super. My views (and helpers) are > duplicated under each module. Is there a way to have Zend look at some > default views and helpers directory, and if a module wants to override them, > then they can be declared under that module directory.
Register the default view and helpers directory in your bootstrap. These paths are registered in LIFO order, so the module directory will be searched first, and fallback to the default directory if nothing is found. -- Matthew Weier O'Phinney Software Architect | [EMAIL PROTECTED] Zend Framework | http://framework.zend.com/
