1) ? implode('.', array_slice($segments, 1)) : null; return array($module, $segments[0], $key); } /** * Load all of the configuration items from a file. * * @param string $file * @param string $module * @return bool */ private static function load($module, $file) { if (isset(static::$items[$module]) and array_key_exists($file, static::$items[$module])) return true; $path = ($module === 'application') ? CONFIG_PATH : MODULE_PATH.$module.'/config/'; // Load the base configuration file. Once that is loaded, we will merge any environment // specific configuration options into the base array. This allows for the convenient // cascading of configuration options depending on the application environment. $config = (file_exists($base = $path.$file.EXT)) ? require $base : array(); if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = $path.$_SERVER['LARAVEL_ENV'].'/'.$file.EXT)) { $config = array_merge($config, require $path); } if (count($config) > 0) static::$items[$module][$file] = $config; return isset(static::$items[$module][$file]); } }