first upload all files
This commit is contained in:
29
Modules/Setting/helpers.php
Normal file
29
Modules/Setting/helpers.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
if (! function_exists('setting')) {
|
||||
/**
|
||||
* Get / set the specified setting value.
|
||||
*
|
||||
* If an array is passed, we'll assume you want to set settings.
|
||||
*
|
||||
* @param string|array $key
|
||||
* @param mixed $default
|
||||
* @return mixed|\Modules\Setting\Repository
|
||||
*/
|
||||
function setting($key = null, $default = null)
|
||||
{
|
||||
if (is_null($key)) {
|
||||
return app('setting');
|
||||
}
|
||||
|
||||
if (is_array($key)) {
|
||||
return app('setting')->set($key);
|
||||
}
|
||||
|
||||
try {
|
||||
return app('setting')->get($key, $default);
|
||||
} catch (PDOException $e) {
|
||||
return $default;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user