|
|
@@ -154,6 +154,13 @@ class Zend_Tool_Project_Provider_Module
|
|
|
$response->appendContent($resource->getContext()->getPath());
|
|
|
$resource->create();
|
|
|
}
|
|
|
+
|
|
|
+ if (strtolower($name) == 'default') {
|
|
|
+ $response->appendContent('Added a key for the default module to the application.ini file');
|
|
|
+ $appConfigFile = $this->_loadedProfile->search('ApplicationConfigFile');
|
|
|
+ $appConfigFile->addStringItem('resources.frontcontroller.params.prefixDefaultModule', '1', 'production');
|
|
|
+ $appConfigFile->create();
|
|
|
+ }
|
|
|
|
|
|
// store changes to the profile
|
|
|
$this->_storeProfile();
|