1
0
Fork 0

Fixed icon path after saving configuration.

Dieser Commit ist enthalten in:
D4rk4ng3l 2012-08-08 22:36:28 +00:00
Ursprung 4f36119278
Commit 88791f1a9c
9 geänderte Dateien mit 235 neuen und 124 gelöschten Zeilen

Datei anzeigen

@ -16,6 +16,27 @@
*/
class Msd_Registry extends Zend_Registry
{
/**
* Key for the configuration filename. This is used inside the registry.
*
* @const string
*/
const CONFIG_FILENAME_KEY = '_configFilename';
/**
* Key for the dynamic configuration. This is used inside the registry.
*
* @const string
*/
const DYNAMIC_CONFIG_KEY = '_dynamic';
/**
* Key for the configuration. This is used inside the registry.
*
* @const string
*/
const CONFIG_KEY = '_config';
/**
* Returns the config instance if it has been registered, returns null otherwise.
*
@ -23,8 +44,8 @@ class Msd_Registry extends Zend_Registry
*/
public static function getConfig()
{
if (self::isRegistered('_config')) {
return self::get('_config');
if (self::isRegistered(self::CONFIG_KEY)) {
return self::get(self::CONFIG_KEY);
}
return null;
@ -41,7 +62,7 @@ class Msd_Registry extends Zend_Registry
*/
public static function setConfig(Msd_Config $config)
{
self::set('_config', $config);
self::set(self::CONFIG_KEY . '', $config);
}
/**
@ -53,8 +74,8 @@ class Msd_Registry extends Zend_Registry
*/
public static function getDynamicConfig()
{
if (self::isRegistered('_dynamic')) {
return self::get('_dynamic');
if (self::isRegistered(self::DYNAMIC_CONFIG_KEY)) {
return self::get(self::DYNAMIC_CONFIG_KEY);
}
return null;
@ -71,6 +92,31 @@ class Msd_Registry extends Zend_Registry
*/
public static function setDynamicConfig(Msd_Config_Dynamic $config)
{
self::set('_dynamic', $config);
self::set(self::DYNAMIC_CONFIG_KEY, $config);
}
/**
* Returns the name of the current configuration file.
*
* @return string
*/
public static function getConfigFilename()
{
if (self::isRegistered(self::CONFIG_FILENAME_KEY)) {
return self::get(self::CONFIG_FILENAME_KEY);
}
return null;
}
/**
* Sets the name of the current configuration file.
*
* @param string $configFilename Name of configuration file.
*
* @return void
*/
public static function setConfigFilename($configFilename)
{
self::set(self::CONFIG_FILENAME_KEY, $configFilename);
}
}