mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 20:02:35 +01:00
parent
0faa130cfd
commit
212cd710aa
@ -38,6 +38,7 @@ class SettingService
|
|||||||
*/
|
*/
|
||||||
public function get($key, $default = false)
|
public function get($key, $default = false)
|
||||||
{
|
{
|
||||||
|
if ($default === false) $default = config('setting-defaults.' . $key, false);
|
||||||
$value = $this->getValueFromStore($key, $default);
|
$value = $this->getValueFromStore($key, $default);
|
||||||
return $this->formatValue($value, $default);
|
return $this->formatValue($value, $default);
|
||||||
}
|
}
|
||||||
@ -69,14 +70,6 @@ class SettingService
|
|||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check the defaults set in the app config.
|
|
||||||
$configPrefix = 'setting-defaults.' . $key;
|
|
||||||
if (config()->has($configPrefix)) {
|
|
||||||
$value = config($configPrefix);
|
|
||||||
$this->cache->forever($cacheKey, $value);
|
|
||||||
return $value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $default;
|
return $default;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user