Browse Source

ability to load a config file with out a key

Michael Hasselbring 14 years ago
parent
commit
2b659dfae9
1 changed files with 12 additions and 1 deletions
  1. 12 1
      system/config.php

+ 12 - 1
system/config.php

@@ -17,8 +17,19 @@ class Config {
 	 */
 	public static function get($key)
 	{
-		list($file, $key) = static::parse($key);
 
+		// -----------------------------------------------------
+		// We are are just pulling in a file, skip loading a key
+		// -----------------------------------------------------
+		if(strpos($key, '.') == 0)
+		{
+			static::load($key);
+
+			return static::$items[$key];
+		}
+
+		list($file, $key) = static::parse($key);
+		
 		static::load($file);
 
 		if (array_key_exists($key, static::$items[$file]))