|
@@ -1,5 +1,6 @@
|
|
|
<?php
|
|
|
|
|
|
+use Illuminate\Http\Request;
|
|
|
use Illuminate\Support\Arr;
|
|
|
use Illuminate\Support\Facades\Session;
|
|
|
use Illuminate\Support\Str;
|
|
@@ -36,6 +37,29 @@ if (! function_exists('user_admin_config')) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+if (! function_exists('switchLanguage')) {
|
|
|
+ function switchLanguage($lang)
|
|
|
+ {
|
|
|
+
|
|
|
+ // 验证是否是支持的语言
|
|
|
+ if (!in_array($lang, ['en', 'zh_CN', 'zh_TW'])) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ $configArray = ['lang' => $lang,];
|
|
|
+
|
|
|
+ user_admin_config($configArray);
|
|
|
+
|
|
|
+ // 动态修改 app.locale 配置
|
|
|
+ config(['app.locale' => $lang]);
|
|
|
+
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
if (!function_exists('getDistributor')) {
|
|
|
/**
|
|
|
* 获取会话中的 distributor 值
|