Given:
1.
bootstrap:
$autoloader = Zend_Loader_Autoloader::getInstance();// Zend_Loader_Autoloader
$autoloader->registerNamespace('Ntk_');
equals to
application.ini:
autoloaderNamespaces[] = "Ntk_"
2.
bootstrap:
$pluginLoader = $this->getPluginLoader();// Zend_Loader_PluginLoader
$pluginLoader->addPrefixPath('My_Resource', APPLICATION_PATH . "/appResourcePlugins");
equals to
application.ini:
pluginPaths.My_Resource = APPLICATION_PATH "/appResourcePlugins"
3.
bootstrap:
$moduleAutoloader = $this>getResourceLoader();//Zend_Application_Module_Autoloader
$moduleAutoloader->addResourceType('need', 'needs', 'Needs');
equals to
application.ini:
???
What is the application.ini method for configuring Zend_Application_Module_Autoloader ?
(...if it exists)
I use zend framework version 1.11.10