/**
* Compatiblity method to return this class' name
*
- * @return __CLASS__ This class' name
+ * @return __CLASS__ This class' name
*/
public function __toString () {
return get_class($this);
}
/**
- * Getter for an instance of this class
+ * Getter for a singleton instance of this class
*
- * @return $configInstance An instance of this class
+ * @return $configInstance A singleton instance of this class
*/
public static final function getSelfInstance () {
// is the instance there?
self::$configInstance = new FrameworkConfiguration();
} // END - if
+ // Return singleton instance
return self::$configInstance;
}
+ /**
+ * Converts dashes to underscores, e.g. useable for configuration entries
+ *
+ * @param $str The string with maybe dashes inside
+ * @return $str The converted string with no dashed, but underscores
+ */
+ private final function convertDashesToUnderscores ($str) {
+ // Convert them all
+ $str = str_replace('-', '_', $str);
+
+ // Return converted string
+ return $str;
+ }
+
/**
* Setter for default time zone (must be correct!)
*
* @throws NoConfigEntryException If a configuration element was not found
*/
public function getConfigEntry ($configEntry) {
- // Cast to string
- $configEntry = (string) $configEntry;
+ // Convert dashes to underscore
+ $configEntry = $this->convertDashesToUnderscores($configEntry);
// Is a valid configuration entry provided?
if (empty($configEntry)) {
*/
public final function setConfigEntry ($configEntry, $configValue) {
// Cast to string
- $configEntry = (string) $configEntry;
+ $configEntry = $this->convertDashesToUnderscores($configEntry);
$configValue = (string) $configValue;
// Is a valid configuration entry provided?
* @throws NoConfigEntryException If a configuration element was not found
*/
public final function unsetConfigEntry ($configKey) {
+ // Convert dashes to underscore
+ $configEntry = $this->convertDashesToUnderscores($configEntry);
+
// Is the configuration entry there?
if (!$this->isConfigurationEntrySet($configKey)) {
// Entry was not found!