1
0
Fork 0
- Changed old configuration to new class for installation
- removed old classes
Dieser Commit ist enthalten in:
DSB 2012-08-21 20:22:56 +00:00
Ursprung c0be3ce898
Commit 4a569043a6
18 geänderte Dateien mit 345 neuen und 753 gelöschten Zeilen

Datei anzeigen

@ -26,6 +26,11 @@ class Msd_Controller_Action extends Zend_Controller_Action
*/
protected $_dynamicConfig;
/**
* @var Msd_Language
*/
protected $_lang;
/**
* Class constructor
*
@ -59,8 +64,9 @@ class Msd_Controller_Action extends Zend_Controller_Action
array $invokeArgs = array()
)
{
$this->_config = Msd_Registry::getConfig();
$this->_config = Msd_Registry::getConfig();
$this->_dynamicConfig = Msd_Registry::getDynamicConfig();
$this->_lang = Msd_Language::getInstance();
parent::__construct($request, $response, $invokeArgs);
}
}