Is there an option to create the default module autoloader when passing the
config to Zend_Application's constructor as opposed to creating a function
in the bootstrap?

Instead of this:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    protected function _initAutoloader()
    {
        $moduleLoader = new Zend_Application_Module_Autoloader(array(
            'basePath' => APPLICATION_PATH,
            'namespace' => '',
        ));
    }

place a config option in application.ini for example?

Thanks a lot,

Jason

Jason DEBORD
Zend Certified Engineer
Limoges, France

http://www.jasondebord.net
http://www.nobrandapp.com

Reply via email to