mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-22 18:48:14 -05:00
34 lines
738 B
PHP
34 lines
738 B
PHP
<?php
|
|
|
|
|
|
if (! function_exists("get_request_content")){
|
|
function get_request_content(){
|
|
|
|
return request()->getContent() ?: json_encode($_POST);
|
|
|
|
}
|
|
}
|
|
|
|
if (! function_exists('admin_setting')) {
|
|
/**
|
|
* 获取或保存配置参数.
|
|
*
|
|
* @param string|array $key
|
|
* @param mixed $default
|
|
* @return App\Support\Setting|mixed
|
|
*/
|
|
function admin_setting($key = null, $default = null)
|
|
{
|
|
if ($key === null) {
|
|
return app('setting');
|
|
}
|
|
|
|
if (is_array($key)) {
|
|
app('setting')->save($key);
|
|
return;
|
|
}
|
|
$default = config('v2board.'. $key) ?? $default;
|
|
return app('setting')->get($key) ?? $default ;
|
|
}
|
|
}
|