Bugfixing Addon-config
This commit is contained in:
parent
d6dd74690d
commit
f2f8c97b7c
|
@ -17,6 +17,11 @@ class ConfigCacheLoader
|
|||
* @var string
|
||||
*/
|
||||
const SUBDIRECTORY = '/config/';
|
||||
/**
|
||||
* The addon sub-directory
|
||||
* @var string
|
||||
*/
|
||||
const ADDONDIRECTORY = '/addon/';
|
||||
|
||||
private $baseDir;
|
||||
private $configDir;
|
||||
|
@ -129,12 +134,17 @@ class ConfigCacheLoader
|
|||
* ];
|
||||
*
|
||||
* @param string $filename
|
||||
* @param bool $addon True, if a config for an addon should be loaded
|
||||
* @return array The configuration
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function loadConfigFile($filename)
|
||||
public function loadConfigFile($filename, $addon = false)
|
||||
{
|
||||
if ($addon) {
|
||||
$filepath = $this->baseDir . self::ADDONDIRECTORY . self::SUBDIRECTORY . $filename . ".config.php";
|
||||
} else {
|
||||
$filepath = $this->configDir . $filename . ".config.php";
|
||||
}
|
||||
|
||||
if (!file_exists($filepath)) {
|
||||
throw new \Exception('Error loading non-existent config file ' . $filepath);
|
||||
|
|
Loading…
Reference in a new issue