25 lines
435 B
PHP
25 lines
435 B
PHP
|
<?php
|
||
|
// Some useful functions
|
||
|
|
||
|
use Engelsystem\Config\Config;
|
||
|
|
||
|
/**
|
||
|
* Get or set config values
|
||
|
*
|
||
|
* @param string|array $key
|
||
|
* @param mixed $default
|
||
|
* @return mixed|Config
|
||
|
*/
|
||
|
function config($key = null, $default = null)
|
||
|
{
|
||
|
if (empty($key)) {
|
||
|
return Config::getInstance();
|
||
|
}
|
||
|
|
||
|
if (is_array($key)) {
|
||
|
Config::getInstance()->set($key);
|
||
|
}
|
||
|
|
||
|
return Config::getInstance()->get($key, $default);
|
||
|
}
|