暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Language.php 38KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\common\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 模型
  18. */
  19. class Language extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 后置操作方法
  29. * 自定义的一个函数 用于数据新增之后做的相应处理操作, 使用时手动调用
  30. * @param int $aid 产品id
  31. * @param array $post post数据
  32. * @param string $opt 操作
  33. */
  34. public function afterAdd($insertId = '', $post = [])
  35. {
  36. $mark = trim($post['mark']);
  37. /*设置默认语言,只允许有一个是默认,其他取消*/
  38. if (1 == intval($post['is_home_default'])) {
  39. $this->where('id','NEQ',$insertId)->update([
  40. 'is_home_default' => 0,
  41. 'update_time' => getTime(),
  42. ]);
  43. /*多语言 设置默认前台语言*/
  44. if (is_language()) {
  45. $langRow = \think\Db::name('language')->order('id asc')
  46. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  47. ->select();
  48. foreach ($langRow as $key => $val) {
  49. tpCache('system', ['system_home_default_lang'=>$mark], $val['mark']);
  50. }
  51. } else { // 单语言
  52. tpCache('system', ['system_home_default_lang'=>$mark]);
  53. }
  54. /*--end*/
  55. }
  56. /*--end*/
  57. /*复制网站配置表数据*/
  58. $config_db = Db::name('config');
  59. $configCount = $config_db->where('lang',$mark)->count();
  60. if (empty($configCount)) {
  61. $configRow = $config_db->field('id,lang',true)
  62. ->where('lang', $post['copy_lang'])
  63. ->order('id asc')
  64. ->select();
  65. if (!empty($configRow)) {
  66. $seo_pseudo = tpCache('seo.seo_pseudo');
  67. if (2 == $seo_pseudo) { // 生成静态页面代码
  68. $markArr = Db::name('language')->field('mark')->order('id asc')->limit('1,1')->select();
  69. $seo_pseudo_lang = tpCache('seo.seo_pseudo', [], $markArr[0]['mark']);
  70. $seo_dynamic_format_lang = tpCache('seo.seo_dynamic_format', [], $markArr[0]['mark']);
  71. $seo_rewrite_format_lang = tpCache('seo.seo_rewrite_format', [], $markArr[0]['mark']);
  72. } else {
  73. $seo_pseudo_lang = tpCache('seo.seo_pseudo', [], $post['copy_lang']);
  74. $seo_dynamic_format_lang = tpCache('seo.seo_dynamic_format', [], $post['copy_lang']);
  75. $seo_rewrite_format_lang = tpCache('seo.seo_rewrite_format', [], $post['copy_lang']);
  76. }
  77. $seo_pseudo_lang = !empty($seo_pseudo_lang) ? $seo_pseudo_lang : 1;
  78. $seo_dynamic_format_lang = !empty($seo_dynamic_format_lang) ? $seo_dynamic_format_lang : 1;
  79. $seo_rewrite_format_lang = !empty($seo_rewrite_format_lang) ? $seo_rewrite_format_lang : 1;
  80. foreach ($configRow as $key => $val) {
  81. $configRow[$key]['lang'] = $mark;
  82. /*临时测试*/
  83. if ('web_name' == $val['name']) {
  84. $configRow[$key]['value'] = $mark.$val['value'];
  85. }
  86. /*--end*/
  87. /**
  88. * 生成静态页面代码
  89. * 新增语言的URL模式必须与第二个语言一致
  90. * 如果没有第二个语言,那么URL模式默认为动态
  91. */
  92. if ('seo_pseudo' == $val['name']) {
  93. $configRow[$key]['value'] = $seo_pseudo_lang;
  94. } else if ('seo_dynamic_format' == $val['name']) {
  95. $configRow[$key]['value'] = $seo_dynamic_format_lang;
  96. } else if ('seo_rewrite_format' == $val['name']) {
  97. $configRow[$key]['value'] = $seo_rewrite_format_lang;
  98. }
  99. /* end */
  100. }
  101. $insertObject = model('Config')->saveAll($configRow);
  102. $insertNum = count($insertObject);
  103. if ($insertNum != count($configRow)) {
  104. return false;
  105. }
  106. }
  107. }
  108. /*--end*/
  109. /*复制自定义变量表数据*/
  110. $configattribute_db = Db::name('config_attribute');
  111. $configattributeCount = $configattribute_db->where('lang',$mark)->count();
  112. if (empty($configattributeCount)) {
  113. $configAttrRow = $configattribute_db->field('attr_id,lang',true)
  114. ->where('lang', $post['copy_lang'])
  115. ->order('attr_id asc')
  116. ->select();
  117. if (!empty($configAttrRow)) {
  118. foreach ($configAttrRow as $key => $val) {
  119. $configAttrRow[$key]['lang'] = $mark;
  120. }
  121. $insertObject = model('ConfigAttribute')->saveAll($configAttrRow);
  122. $insertNum = count($insertObject);
  123. if ($insertNum != count($configAttrRow)) {
  124. return false;
  125. }
  126. }
  127. }
  128. /*--end*/
  129. /*复制栏目表以及关联数据*/
  130. $syn_status = $this->syn_arctype($mark, $post['copy_lang']);
  131. if (false === $syn_status) {
  132. return $syn_status;
  133. }
  134. /*--end*/
  135. /*复制阅读权限表数据*/
  136. $arcrank_db = Db::name('arcrank');
  137. $arcrankCount = $arcrank_db->where('lang',$mark)->count();
  138. if (empty($arcrankCount)) {
  139. $arcrankRow = $arcrank_db->field('id,lang',true)
  140. ->where('lang', $post['copy_lang'])
  141. ->order('id asc')
  142. ->select();
  143. if (!empty($arcrankRow)) {
  144. foreach ($arcrankRow as $key => $val) {
  145. $arcrankRow[$key]['lang'] = $mark;
  146. }
  147. $insertNum = $arcrank_db->insertAll($arcrankRow);
  148. if ($insertNum != count($arcrankRow)) {
  149. return false;
  150. }
  151. }
  152. }
  153. /*--end*/
  154. /*复制广告位置表以及广告表数据*/
  155. $syn_status = $this->syn_ad_position($mark, $post['copy_lang']);
  156. if (false === $syn_status) {
  157. return $syn_status;
  158. }
  159. /*--end*/
  160. /*复制新产品参数分组表以及新产品参数表数据*/
  161. $syn_status = $this->syn_shop_product_attrlist($mark, $post['copy_lang']);
  162. if (false === $syn_status) {
  163. return $syn_status;
  164. }
  165. /*--end*/
  166. /*复制表单表数据*/
  167. $syn_status = $this->syn_form($mark, $post['copy_lang']);
  168. if (false === $syn_status) {
  169. return $syn_status;
  170. }
  171. /*--end*/
  172. /*复制友情链接分组表以及友情链接表数据*/
  173. $syn_status = $this->syn_links_group($mark, $post['copy_lang']);
  174. if (false === $syn_status) {
  175. return $syn_status;
  176. }
  177. /*--end*/
  178. /*复制友情链接表数据*/
  179. /*$links_db = Db::name('links');
  180. $linksCount = $links_db->where('lang',$mark)->count();
  181. if (empty($linksCount)) {
  182. $linksRow = $links_db->field('id,lang',true)
  183. ->where('lang', $post['copy_lang'])
  184. ->order('id asc')
  185. ->select();
  186. if (!empty($linksRow)) {
  187. foreach ($linksRow as $key => $val) {
  188. $linksRow[$key]['lang'] = $mark;
  189. $linksRow[$key]['title'] = $mark.$val['title']; // 临时测试
  190. }
  191. $insertObject = model('Links')->saveAll($linksRow);
  192. $insertNum = count($insertObject);
  193. if ($insertNum != count($linksRow)) {
  194. return false;
  195. }
  196. }
  197. }*/
  198. /*--end*/
  199. /*复制邮件模板表数据*/
  200. $smtp_tpl_db = Db::name('smtp_tpl');
  201. $smtptplCount = $smtp_tpl_db->where('lang',$mark)->count();
  202. if (empty($smtptplCount)) {
  203. $smtptplRow = $smtp_tpl_db->field('tpl_id,lang',true)
  204. ->where('lang', $post['copy_lang'])
  205. ->order('tpl_id asc')
  206. ->select();
  207. if (!empty($smtptplRow)) {
  208. foreach ($smtptplRow as $key => $val) {
  209. $smtptplRow[$key]['lang'] = $mark;
  210. }
  211. $insertObject = model('SmtpTpl')->saveAll($smtptplRow);
  212. $insertNum = count($insertObject);
  213. if ($insertNum != count($smtptplRow)) {
  214. return false;
  215. }
  216. }
  217. }
  218. /*--end*/
  219. /*复制手机短信模板表数据*/
  220. $sms_tpl_db = Db::name('sms_template');
  221. $smstplCount = $sms_tpl_db->where('lang',$mark)->count();
  222. if (empty($smstplCount)) {
  223. $smstplRow = $sms_tpl_db->field('tpl_id,lang',true)
  224. ->where('lang', $post['copy_lang'])
  225. ->order('tpl_id asc')
  226. ->select();
  227. if (!empty($smstplRow)) {
  228. foreach ($smstplRow as $key => $val) {
  229. $smstplRow[$key]['lang'] = $mark;
  230. }
  231. $insertObject = model('SmsTemplate')->saveAll($smstplRow);
  232. $insertNum = count($insertObject);
  233. if ($insertNum != count($smstplRow)) {
  234. return false;
  235. }
  236. }
  237. }
  238. /*--end*/
  239. /*复制模板语言包变量表数据*/
  240. $langpack_db = Db::name('language_pack');
  241. $langpackCount = $langpack_db->where('lang',$mark)->count();
  242. if (empty($langpackCount)) {
  243. $langpackRow = $langpack_db->field('id,lang',true)
  244. ->where([
  245. 'lang' => $post['copy_lang'],
  246. 'is_syn' => 0,
  247. ])
  248. ->order('id asc')
  249. ->select();
  250. if (!empty($langpackRow)) {
  251. foreach ($langpackRow as $key => $val) {
  252. $langpackRow[$key]['lang'] = $mark;
  253. }
  254. $insertObject = model('LanguagePack')->saveAll($langpackRow);
  255. $insertNum = count($insertObject);
  256. if ($insertNum != count($langpackRow)) {
  257. return false;
  258. }
  259. }
  260. }
  261. /*--end*/
  262. /*统计多语言数量*/
  263. $this->setLangNum();
  264. /*--end*/
  265. \think\Cache::clear('language');
  266. delFile(CACHE_PATH.$mark);
  267. return true;
  268. }
  269. /**
  270. * 统计多语言数量
  271. */
  272. public function setLangNum()
  273. {
  274. \think\Cache::clear('system_langnum');
  275. $languageRow = Db::name('language')->field('mark')->select();
  276. $system_langnum = count($languageRow);
  277. foreach ($languageRow as $key => $val) {
  278. tpCache('system', ['system_langnum'=>$system_langnum], $val['mark']);
  279. }
  280. // 记录多语言启用数量
  281. $system_langnum = 1;
  282. $web_language_switch = tpCache('web.web_language_switch');
  283. if (!empty($web_language_switch)) {
  284. $system_langnum = Db::name('language')->where(['status'=>1])->count();
  285. }
  286. $tfile = DATA_PATH.'conf'.DS.'lang_enable_num.txt';
  287. $fp = @fopen($tfile,'w');
  288. if(!$fp) {
  289. @file_put_contents($tfile, $system_langnum);
  290. }
  291. else {
  292. fwrite($fp, $system_langnum);
  293. fclose($fp);
  294. }
  295. }
  296. /**
  297. * 后置操作方法
  298. * 自定义的一个函数 用于数据删除之后做的相应处理操作, 使用时手动调用
  299. * @param int $aid 产品id
  300. * @param array $post post数据
  301. * @param string $opt 操作
  302. */
  303. public function afterDel($id_arr = [], $lang_list = [])
  304. {
  305. if (!empty($id_arr) && !empty($lang_list)) {
  306. // 至少保留一个语言是开启状态
  307. $row = Db::name('language')->where(['status'=>1])->select();
  308. if (empty($row)) {
  309. Db::name('language')->where(['is_home_default'=>1])->update(['status'=>1,'update_time'=>getTime()]);
  310. }
  311. \think\Cache::clear('language');
  312. foreach ($lang_list as $key => $lang) {
  313. delFile(CACHE_PATH.$lang, true);
  314. @unlink(APP_PATH."lang/{$lang}.php");
  315. }
  316. /*统计多语言数量*/
  317. $this->setLangNum();
  318. // 创建时删除多余的语言数据
  319. $this->delLangData($lang_list);
  320. }
  321. }
  322. /**
  323. * 创建时删除多余的语言数据
  324. * @param [type] $lang_list [description]
  325. * @return [type] [description]
  326. */
  327. public function delLangData($lang_list)
  328. {
  329. if (!empty($lang_list)) {
  330. /*同步删除模板栏目绑定表数据*/
  331. Db::name('language_attr')->where("lang",'IN',$lang_list)->delete();
  332. /*同步删除模板语言变量表数据*/
  333. Db::name('language_pack')->where("lang",'IN',$lang_list)->delete();
  334. /*同步删除阅读权限表数据*/
  335. Db::name('arcrank')->where("lang",'IN',$lang_list)->delete();
  336. /*同步删除基础信息表数据*/
  337. Db::name('config')->where("lang",'IN',$lang_list)->delete();
  338. /*同步删除其他信息表数据*/
  339. Db::name('setting')->where("lang",'IN',$lang_list)->delete();
  340. /*同步删除自定义变量表数据*/
  341. Db::name('config_attribute')->where("lang",'IN',$lang_list)->delete();
  342. /*同步删除栏目表以及文档表数据*/
  343. $typeids = Db::name('arctype')->where("lang",'IN',$lang_list)->column('id');
  344. //待删除栏目ID集合
  345. Db::name('arctype')->where("lang",'IN',$lang_list)->delete(); // 栏目表
  346. Db::name('channelfield_bind')->where("typeid",'IN',$typeids)->delete(); // 栏目与自定义字段绑定表
  347. $aids = Db::name('archives')->where("typeid",'IN',$typeids)->column('aid');
  348. //待删除文档ID集合
  349. Db::name('archives')->where("aid",'IN',$aids)->delete(); // 文档主表
  350. Db::name('article_content')->where("aid",'IN',$aids)->delete(); // 文章内容表
  351. Db::name('download_content')->where("aid",'IN',$aids)->delete(); // 软件内容表
  352. Db::name('download_file')->where("aid",'IN',$aids)->delete(); // 软件附件表
  353. Db::name('guestbook')->where("aid",'IN',$aids)->delete(); // 留言主表
  354. Db::name('guestbook_attr')->where("aid",'IN',$aids)->delete(); // 留言内容表
  355. Db::name('images_content')->where("aid",'IN',$aids)->delete(); // 图集内容表
  356. Db::name('images_upload')->where("aid",'IN',$aids)->delete(); // 图集图片表
  357. Db::name('product_content')->where("aid",'IN',$aids)->delete(); // 产品内容表
  358. Db::name('product_img')->where("aid",'IN',$aids)->delete(); // 产品图集表
  359. Db::name('single_content')->where("aid",'IN',$aids)->delete(); // 单页内容表
  360. /*同步删除表单表数据*/
  361. Db::name('form')->where("lang",'IN',$lang_list)->delete();
  362. /*同步删除产品属性表数据*/
  363. Db::name('product_attribute')->where("lang",'IN',$lang_list)->delete();
  364. /*同步删除新产品参数分组表数据*/
  365. Db::name('shop_product_attrlist')->where("lang",'IN',$lang_list)->delete();
  366. /*同步删除新产品参数表数据*/
  367. Db::name('shop_product_attribute')->where("lang",'IN',$lang_list)->delete();
  368. /*同步删除留言属性表数据*/
  369. Db::name('guestbook_attribute')->where("lang",'IN',$lang_list)->delete();
  370. /*同步删除广告表数据*/
  371. Db::name('ad')->where("lang",'IN',$lang_list)->delete();
  372. /*同步删除广告位置表数据*/
  373. Db::name('ad_position')->where("lang",'IN',$lang_list)->delete();
  374. /*同步删除友情链接表数据*/
  375. Db::name('links')->where("lang",'IN',$lang_list)->delete();
  376. /*同步删除友情链接分组表数据*/
  377. Db::name('links_group')->where("lang",'IN',$lang_list)->delete();
  378. /*同步删除可视化表数据*/
  379. Db::name('ui_config')->where("lang",'IN',$lang_list)->delete();
  380. /*同步删除Tag标签表数据*/
  381. Db::name('taglist')->where("lang",'IN',$lang_list)->delete();
  382. /*同步删除标签索引表数据*/
  383. Db::name('tagindex')->where("lang",'IN',$lang_list)->delete();
  384. /*同步删除邮件模板表数据*/
  385. Db::name('smtp_tpl')->where("lang",'IN',$lang_list)->delete();
  386. /*同步删除邮件发送记录表数据*/
  387. Db::name('smtp_record')->where("lang",'IN',$lang_list)->delete();
  388. /*同步删除短信模板表数据*/
  389. Db::name('sms_template')->where("lang",'IN',$lang_list)->delete();
  390. /*同步删除短信发送记录表数据*/
  391. Db::name('sms_log')->where("lang",'IN',$lang_list)->delete();
  392. /*同步删除站内信模板表数据*/
  393. Db::name('users_notice_tpl')->where("lang",'IN',$lang_list)->delete();
  394. /*同步删除站内信发送记录表数据*/
  395. Db::name('users_notice_tpl_content')->where("lang",'IN',$lang_list)->delete();
  396. /*会员中心移动端底部菜单表*/
  397. Db::name('users_bottom_menu')->where("lang",'IN',$lang_list)->delete();
  398. \think\Cache::clear();
  399. }
  400. }
  401. /**
  402. * 创建语言时,同步第一个语言的栏目到新语言里
  403. *
  404. * @param string $mark 新增语言
  405. * @param string $copy_lang 复制语言
  406. */
  407. private function syn_arctype($mark = '', $copy_lang = 'cn')
  408. {
  409. $arctype_db = Db::name('arctype');
  410. /*删除新增语言之前的多余数据*/
  411. $count = $arctype_db->where('lang',$mark)->count();
  412. if (!empty($count)) {
  413. $arctype_db->where("lang",$mark)->delete();
  414. }
  415. /*--end*/
  416. $bindArctypeArr = []; // 源栏目ID与目标栏目ID的对应数组
  417. $arctypeLogic = new \app\common\logic\ArctypeLogic;
  418. $arctypeList = $arctypeLogic->arctype_list(0, 0, false, 0, ['lang'=>$copy_lang]);
  419. if (empty($mark) || empty($arctypeList)) {
  420. return -1;
  421. }
  422. /*复制产品属性表数据*/
  423. $bindProductAttributeArr = []; // 源产品属性ID与目标产品属性ID的对应数组
  424. $product_attribute_db = Db::name('product_attribute');
  425. $productAttributeRow = $product_attribute_db->where('lang',$copy_lang)
  426. ->order('attr_id asc')
  427. ->select();
  428. $productAttributeRow = group_same_key($productAttributeRow, 'typeid');
  429. /*--end*/
  430. /*复制留言属性表数据*/
  431. $bindgbookAttributeArr = []; // 源留言属性ID与目标留言属性ID的对应数组
  432. $guestbook_attribute_db = Db::name('guestbook_attribute');
  433. $gbookAttributeRow = $guestbook_attribute_db->where([
  434. 'form_type' => 0,
  435. 'lang' => $copy_lang,
  436. ])
  437. ->order('attr_id asc')
  438. ->select();
  439. $gbookAttributeRow = group_same_key($gbookAttributeRow, 'typeid');
  440. /*--end*/
  441. /*复制栏目表数据*/
  442. $arctype_M = model('Arctype');
  443. foreach ($arctypeList as $key => $val) {
  444. $data = $val;
  445. $typeid_old = $data['id'];
  446. unset($data['id']);
  447. $data['lang'] = $mark;
  448. $data['typename'] = $mark.$data['typename']; // 临时测试
  449. $data['parent_id'] = !empty($bindArctypeArr[$val['parent_id']]) ? $bindArctypeArr[$val['parent_id']] : 0;
  450. $typeid = $arctype_M->addData($data);
  451. if (empty($typeid)) {
  452. return false; // 同步失败
  453. }
  454. /*复制栏目与自定义字段绑定表*/
  455. $channelfield_bind_list = Db::name('channelfield_bind')->where('typeid',$typeid_old)->select();
  456. if (!empty($channelfield_bind_list)){
  457. $channelfield_bind_insert = [];
  458. foreach ($channelfield_bind_list as $k => $v) {
  459. $channelfield_bind_insert[] = [
  460. 'typeid' => $typeid,
  461. 'field_id' => $v['field_id'],
  462. 'add_time' => getTime(),
  463. 'update_time' => getTime()
  464. ];
  465. }
  466. //写入绑定自定义字段
  467. Db::name('channelfield_bind')->insertAll($channelfield_bind_insert);
  468. }
  469. /*--end*/
  470. $bindArctypeArr[$val['id']] = $typeid;
  471. /*复制产品属性表数据*/
  472. if (!empty($productAttributeRow[$val['id']])) {
  473. foreach ($productAttributeRow[$val['id']] as $k2 => $v2) {
  474. $proArr = $v2;
  475. $proArr['typeid'] = $typeid;
  476. $proArr['lang'] = $mark;
  477. unset($proArr['attr_id']);
  478. $proArr['attr_name'] = $mark.$proArr['attr_name']; // 临时测试
  479. $new_attr_id = $product_attribute_db->insertGetId($proArr);
  480. if (empty($new_attr_id)) {
  481. return false; // 同步失败
  482. }
  483. $bindProductAttributeArr[$v2['attr_id']] = $new_attr_id;
  484. }
  485. }
  486. /*--end*/
  487. /*复制留言属性表数据*/
  488. if (!empty($gbookAttributeRow[$val['id']])) {
  489. foreach ($gbookAttributeRow[$val['id']] as $k2 => $v2) {
  490. $gbArr = $v2;
  491. $gbArr['typeid'] = $typeid;
  492. $gbArr['lang'] = $mark;
  493. unset($gbArr['attr_id']);
  494. $gbArr['attr_name'] = $mark.$gbArr['attr_name']; // 临时测试
  495. $new_attr_id = $guestbook_attribute_db->insertGetId($gbArr);
  496. if (empty($new_attr_id)) {
  497. return false; // 同步失败
  498. }
  499. $bindgbookAttributeArr[$v2['attr_id']] = $new_attr_id;
  500. }
  501. }
  502. /*--end*/
  503. }
  504. /*--end*/
  505. $langAttrData = [];
  506. /*新增栏目ID与源栏目ID的绑定*/
  507. foreach ($bindArctypeArr as $key => $val) {
  508. $langAttrData[] = [
  509. 'attr_name' => 'tid'.$key,
  510. 'attr_value' => $val,
  511. 'lang' => $mark,
  512. 'attr_group' => 'arctype',
  513. 'add_time' => getTime(),
  514. 'update_time' => getTime(),
  515. ];
  516. }
  517. /*--end*/
  518. /*新增产品属性ID与源产品属性ID的绑定*/
  519. foreach ($bindProductAttributeArr as $key => $val) {
  520. $langAttrData[] = [
  521. 'attr_name' => 'attr_'.$key,
  522. 'attr_value' => $val,
  523. 'lang' => $mark,
  524. 'attr_group' => 'product_attribute',
  525. 'add_time' => getTime(),
  526. 'update_time' => getTime(),
  527. ];
  528. }
  529. /*--end*/
  530. /*新增留言属性ID与源留言属性ID的绑定*/
  531. foreach ($bindgbookAttributeArr as $key => $val) {
  532. $langAttrData[] = [
  533. 'attr_name' => 'attr_'.$key,
  534. 'attr_value' => $val,
  535. 'lang' => $mark,
  536. 'attr_group' => 'guestbook_attribute',
  537. 'add_time' => getTime(),
  538. 'update_time' => getTime(),
  539. ];
  540. }
  541. /*--end*/
  542. // 批量存储
  543. if (!empty($langAttrData)) {
  544. $insertObject = model('LanguageAttr')->saveAll($langAttrData);
  545. $insertNum = count($insertObject);
  546. if ($insertNum != count($langAttrData)) {
  547. return false;
  548. }
  549. }
  550. return true;
  551. }
  552. /**
  553. * 创建语言时,同步广告位置以及广告数据,并进行多语言关联绑定
  554. *
  555. * @param string $mark 新增语言
  556. * @param string $copy_lang 复制语言
  557. */
  558. private function syn_ad_position($mark = '', $copy_lang = 'cn')
  559. {
  560. $ad_position_db = Db::name('ad_position');
  561. /*删除新增语言之前的多余数据*/
  562. $count = $ad_position_db->where('lang',$mark)->count();
  563. if (!empty($count)) {
  564. $ad_position_db->where("lang",$mark)->delete();
  565. }
  566. /*--end*/
  567. // 广告位置列表
  568. $bindAdpositionArr = []; // 源广告位置ID与目标广告位置ID的对应数组
  569. $adpositionList = $ad_position_db->where([
  570. 'lang'=>$copy_lang
  571. ])->order('id asc')
  572. ->select();
  573. if (empty($mark) || empty($adpositionList)) {
  574. return -1;
  575. }
  576. /*复制广告表数据*/
  577. $bindAdArr = []; // 源广告ID与目标广告ID的对应数组
  578. $ad_db = Db::name('ad');
  579. $adRow = $ad_db->where('lang',$copy_lang)
  580. ->order('id asc')
  581. ->select();
  582. $adRow = group_same_key($adRow, 'pid');
  583. /*--end*/
  584. /*复制广告位置表数据*/
  585. foreach ($adpositionList as $key => $val) {
  586. $data = $val;
  587. unset($data['id']);
  588. $data['lang'] = $mark;
  589. $data['title'] = $mark.$data['title']; // 临时测试
  590. $pid = $ad_position_db->insertGetId($data);
  591. if (empty($pid)) {
  592. return false; // 同步失败
  593. }
  594. $bindAdpositionArr[$val['id']] = $pid;
  595. /*复制广告表数据*/
  596. if (!empty($adRow[$val['id']])) {
  597. foreach ($adRow[$val['id']] as $k2 => $v2) {
  598. $adArr = $v2;
  599. $adArr['pid'] = $pid;
  600. $adArr['lang'] = $mark;
  601. unset($adArr['id']);
  602. $adArr['title'] = $mark.$adArr['title']; // 临时测试
  603. $new_ad_id = $ad_db->insertGetId($adArr);
  604. if (empty($new_ad_id)) {
  605. return false; // 同步失败
  606. }
  607. $bindAdArr[$v2['id']] = $new_ad_id;
  608. }
  609. }
  610. /*--end*/
  611. }
  612. /*--end*/
  613. $langAttrData = [];
  614. /*新增广告位置ID与源广告位置ID的绑定*/
  615. foreach ($bindAdpositionArr as $key => $val) {
  616. $langAttrData[] = [
  617. 'attr_name' => 'adp'.$key,
  618. 'attr_value' => $val,
  619. 'lang' => $mark,
  620. 'attr_group' => 'ad_position',
  621. 'add_time' => getTime(),
  622. 'update_time' => getTime(),
  623. ];
  624. }
  625. /*--end*/
  626. /*新增广告ID与源广告ID的绑定*/
  627. foreach ($bindAdArr as $key => $val) {
  628. $langAttrData[] = [
  629. 'attr_name' => 'ad'.$key,
  630. 'attr_value' => $val,
  631. 'lang' => $mark,
  632. 'attr_group' => 'ad',
  633. 'add_time' => getTime(),
  634. 'update_time' => getTime(),
  635. ];
  636. }
  637. /*--end*/
  638. // 批量存储
  639. if (!empty($langAttrData)) {
  640. $insertObject = model('LanguageAttr')->saveAll($langAttrData);
  641. $insertNum = count($insertObject);
  642. if ($insertNum != count($langAttrData)) {
  643. return false;
  644. }
  645. }
  646. return true;
  647. }
  648. /**
  649. * 创建语言时,同步新产品参数分组以及新产品参数数据,并进行多语言关联绑定
  650. *
  651. * @param string $mark 新增语言
  652. * @param string $copy_lang 复制语言
  653. */
  654. private function syn_shop_product_attrlist($mark = '', $copy_lang = 'cn')
  655. {
  656. $attrlist_db = Db::name('shop_product_attrlist');
  657. /*删除新增语言之前的多余数据*/
  658. $count = $attrlist_db->where('lang',$mark)->count();
  659. if (!empty($count)) {
  660. $attrlist_db->where("lang",$mark)->delete();
  661. }
  662. /*--end*/
  663. // 新产品参数分组列表
  664. $bindAttrlistArr = []; // 源新产品参数分组ID与目标新产品参数分组ID的对应数组
  665. $attrlistRow = $attrlist_db->where([
  666. 'lang'=>$copy_lang
  667. ])->order('list_id asc')
  668. ->select();
  669. if (empty($mark) || empty($attrlistRow)) {
  670. return -1;
  671. }
  672. /*复制新产品参数表数据*/
  673. $bindAttributeArr = []; // 源新产品参数ID与目标新产品参数ID的对应数组
  674. $attribute_db = Db::name('shop_product_attribute');
  675. $attributeRow = $attribute_db->where('lang',$copy_lang)
  676. ->order('attr_id asc')
  677. ->select();
  678. $attributeRow = group_same_key($attributeRow, 'list_id');
  679. /*--end*/
  680. /*复制新产品参数分组表数据*/
  681. foreach ($attrlistRow as $key => $val) {
  682. $data = $val;
  683. unset($data['list_id']);
  684. $data['lang'] = $mark;
  685. // $data['list_name'] = $mark.$data['list_name']; // 临时测试
  686. $list_id = $attrlist_db->insertGetId($data);
  687. if (empty($list_id)) {
  688. return false; // 同步失败
  689. }
  690. $bindAttrlistArr[$val['list_id']] = $list_id;
  691. /*复制新产品参数表数据*/
  692. if (!empty($attributeRow[$val['list_id']])) {
  693. foreach ($attributeRow[$val['list_id']] as $k2 => $v2) {
  694. $attributeArr = $v2;
  695. $attributeArr['list_id'] = $list_id;
  696. $attributeArr['lang'] = $mark;
  697. unset($attributeArr['attr_id']);
  698. // $attributeArr['attr_name'] = $mark.$attributeArr['attr_name']; // 临时测试
  699. $new_attr_id = $attribute_db->insertGetId($attributeArr);
  700. if (empty($new_attr_id)) {
  701. return false; // 同步失败
  702. }
  703. $bindAttributeArr[$v2['attr_id']] = $new_attr_id;
  704. }
  705. }
  706. /*--end*/
  707. }
  708. /*--end*/
  709. return true;
  710. }
  711. /**
  712. * 创建语言时,同步友链分组以及友情链接数据,并进行多语言关联绑定
  713. *
  714. * @param string $mark 新增语言
  715. * @param string $copy_lang 复制语言
  716. */
  717. private function syn_links_group($mark = '', $copy_lang = 'cn')
  718. {
  719. $links_group_db = Db::name('links_group');
  720. /*删除新增语言之前的多余数据*/
  721. $count = $links_group_db->where('lang',$mark)->count();
  722. if (!empty($count)) {
  723. $links_group_db->where("lang",$mark)->delete();
  724. }
  725. /*--end*/
  726. // 友情链接分组列表
  727. $bindLinksGroupArr = []; // 源友情链接分组ID与目标友情链接分组ID的对应数组
  728. $linksGroupList = $links_group_db->where([
  729. 'lang'=>$copy_lang
  730. ])->order('id asc')
  731. ->select();
  732. if (empty($mark) || empty($linksGroupList)) {
  733. return -1;
  734. }
  735. /*复制友情链接表数据*/
  736. $links_db = Db::name('links');
  737. $linksRow = $links_db->where('lang',$copy_lang)
  738. ->order('id asc')
  739. ->select();
  740. $linksRow = group_same_key($linksRow, 'groupid');
  741. /*--end*/
  742. /*复制友情链接分组表数据*/
  743. foreach ($linksGroupList as $key => $val) {
  744. $data = $val;
  745. unset($data['id']);
  746. $data['lang'] = $mark;
  747. $data['group_name'] = $mark.$data['group_name']; // 临时测试
  748. $groupid = $links_group_db->insertGetId($data);
  749. if (empty($groupid)) {
  750. return false; // 同步失败
  751. }
  752. $bindLinksGroupArr[$val['id']] = $groupid;
  753. /*复制友情链接表数据*/
  754. if (!empty($linksRow[$val['id']])) {
  755. foreach ($linksRow[$val['id']] as $k2 => $v2) {
  756. $linksArr = $v2;
  757. $linksArr['groupid'] = $groupid;
  758. $linksArr['lang'] = $mark;
  759. unset($linksArr['id']);
  760. $linksArr['title'] = $mark.$linksArr['title']; // 临时测试
  761. $new_links_id = $links_db->insertGetId($linksArr);
  762. if (empty($new_links_id)) {
  763. return false; // 同步失败
  764. }
  765. }
  766. }
  767. /*--end*/
  768. }
  769. /*--end*/
  770. $langAttrData = [];
  771. /*新增友情链接分组ID与源友情链接分组ID的绑定*/
  772. foreach ($bindLinksGroupArr as $key => $val) {
  773. $langAttrData[] = [
  774. 'attr_name' => 'linksgroup'.$key,
  775. 'attr_value' => $val,
  776. 'lang' => $mark,
  777. 'attr_group' => 'links_group',
  778. 'add_time' => getTime(),
  779. 'update_time' => getTime(),
  780. ];
  781. }
  782. /*--end*/
  783. // 批量存储
  784. if (!empty($langAttrData)) {
  785. $insertObject = model('LanguageAttr')->saveAll($langAttrData);
  786. $insertNum = count($insertObject);
  787. if ($insertNum != count($langAttrData)) {
  788. return false;
  789. }
  790. }
  791. return true;
  792. }
  793. public function isValidateStatus($field = '', $value = '')
  794. {
  795. $return = true;
  796. $value = trim($value);
  797. if ($value == 0 && $field == 'status') {
  798. $count = Db::name('language')->where(['status'=>1])->count();
  799. if ($count <= 1) {
  800. $return = [
  801. 'time' => 2,
  802. 'msg' => '至少要开启一个语言',
  803. ];
  804. }
  805. }
  806. return $return;
  807. }
  808. /**
  809. * 创建语言时,同步表单数据,并进行多语言关联绑定
  810. *
  811. * @param string $mark 新增语言
  812. * @param string $copy_lang 复制语言
  813. */
  814. private function syn_form($mark = '', $copy_lang = 'cn')
  815. {
  816. $form_db = Db::name('form');
  817. /*删除新增语言之前的多余数据*/
  818. $count = $form_db->where('lang',$mark)->count();
  819. if (!empty($count)) {
  820. $form_db->where("lang",$mark)->delete();
  821. }
  822. /*--end*/
  823. // 表单列表
  824. $bindFormArr = []; // 源表单ID与目标表单ID的对应数组
  825. $formList = $form_db->where([
  826. 'lang'=>$copy_lang
  827. ])->order('form_id asc')
  828. ->select();
  829. if (empty($mark) || empty($formList)) {
  830. return -1;
  831. }
  832. /*复制表单属性表数据*/
  833. $bindformAttributeArr = []; // 源表单属性ID与目标表单属性ID的对应数组
  834. $guestbook_attribute_db = Db::name('guestbook_attribute');
  835. $formAttributeRow = $guestbook_attribute_db->where([
  836. 'form_type' => 1,
  837. 'lang' => $copy_lang,
  838. ])
  839. ->order('attr_id asc')
  840. ->select();
  841. $formAttributeRow = group_same_key($formAttributeRow, 'typeid');
  842. /*--end*/
  843. /*复制表单表数据*/
  844. foreach ($formList as $key => $val) {
  845. $data = $val;
  846. unset($data['form_id']);
  847. $data['lang'] = $mark;
  848. $data['form_name'] = $mark.$data['form_name']; // 临时测试
  849. $form_id = $form_db->insertGetId($data);
  850. if (empty($form_id)) {
  851. return false; // 同步失败
  852. }
  853. $bindFormArr[$val['form_id']] = $form_id;
  854. // 复制表单属性表数据
  855. if (!empty($formAttributeRow[$val['form_id']])) {
  856. foreach ($formAttributeRow[$val['form_id']] as $_k => $_v) {
  857. $formArr = $_v;
  858. $formArr['typeid'] = $form_id;
  859. $formArr['lang'] = $mark;
  860. unset($formArr['attr_id']);
  861. $formArr['attr_name'] = $mark.$formArr['attr_name']; // 临时测试
  862. $new_attr_id = $guestbook_attribute_db->insertGetId($formArr);
  863. if (empty($new_attr_id)) {
  864. return false; // 同步失败
  865. }
  866. $bindformAttributeArr[$_v['attr_id']] = $new_attr_id;
  867. }
  868. }
  869. }
  870. /*--end*/
  871. $langAttrData = [];
  872. /*新增表单ID与源表单ID的绑定*/
  873. foreach ($bindFormArr as $key => $val) {
  874. $langAttrData[] = [
  875. 'attr_name' => 'form'.$key,
  876. 'attr_value' => $val,
  877. 'lang' => $mark,
  878. 'attr_group' => 'form',
  879. 'add_time' => getTime(),
  880. 'update_time' => getTime(),
  881. ];
  882. }
  883. /*--end*/
  884. /*新增表单属性ID与源表单属性ID的绑定*/
  885. foreach ($bindformAttributeArr as $key => $val) {
  886. $langAttrData[] = [
  887. 'attr_name' => 'attr_'.$key,
  888. 'attr_value' => $val,
  889. 'lang' => $mark,
  890. 'attr_group' => 'form_attribute',
  891. 'add_time' => getTime(),
  892. 'update_time' => getTime(),
  893. ];
  894. }
  895. /*--end*/
  896. // 批量存储
  897. if (!empty($langAttrData)) {
  898. $insertObject = model('LanguageAttr')->saveAll($langAttrData);
  899. $insertNum = count($insertObject);
  900. if ($insertNum != count($langAttrData)) {
  901. return false;
  902. }
  903. }
  904. return true;
  905. }
  906. }