Merge pull request #11 from mikelbring/develop

Load a config file with out a key
This commit is contained in:
Taylor Otwell
2011-06-16 18:44:05 -07:00

View File

@@ -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]))