Ei kuvausta
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.

UsersRelease.php 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  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\user\model;
  14. use think\Db;
  15. use think\Model;
  16. use think\Config;
  17. /**
  18. * 会员投稿
  19. */
  20. class UsersRelease extends Model
  21. {
  22. private $home_lang = 'cn';
  23. //初始化
  24. protected function initialize()
  25. {
  26. // 需要调用`Model`的`initialize`方法
  27. parent::initialize();
  28. $this->home_lang = get_home_lang();
  29. }
  30. /**
  31. * 后置操作方法
  32. * 自定义的一个函数 用于数据保存后做的相应处理操作, 使用时手动调用
  33. * @param int $aid 产品id
  34. * @param array $post post数据
  35. * @param string $opt 操作
  36. */
  37. public function afterSave($aid, $post, $opt, $table)
  38. {
  39. $post['aid'] = $aid;
  40. $addonFieldExt = !empty($post['addonFieldExt']) ? $post['addonFieldExt'] : array();
  41. $this->dealChannelPostData($post['channel'], $post, $addonFieldExt);
  42. // 图集模型
  43. if ($post['channel'] == 3) {
  44. $this->saveimg($aid, $post);
  45. } else if ($post['channel'] == 4) {
  46. model('DownloadFile')->savefile($aid, $post);
  47. } else if ($post['channel'] == 5) {
  48. model('MediaFile')->savefile($aid, $post,$opt);
  49. }
  50. // 处理TAG标签
  51. model('Taglist')->savetags($aid, $post['typeid'], $post['tags'], $post['arcrank'], $opt);
  52. if ('edit' == $opt) {
  53. // 清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表
  54. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  55. model('SqlCacheTable')->InsertSqlCacheTable(true);
  56. } else {
  57. // 处理mysql缓存表数据
  58. if (isset($post['arcrank']) && 0 <= $post['arcrank']) {
  59. // 投稿已审核
  60. model('SqlCacheTable')->UpdateSqlCacheTable($post, $opt, $table, true);
  61. } else if (isset($post['arcrank']) && -1 == $post['arcrank']) {
  62. // 投稿待审核
  63. model('SqlCacheTable')->UpdateDraftSqlCacheTable($post, $opt, true);
  64. }
  65. }
  66. }
  67. /**
  68. * 删除单条图集的所有图片
  69. * @author 小虎哥 by 2018-4-3
  70. */
  71. public function delImgUpload($aid = array())
  72. {
  73. if (!is_array($aid)) {
  74. $aid = array($aid);
  75. }
  76. $result = Db::name('ImagesUpload')->where(array('aid'=>array('IN', $aid)))->delete();
  77. return $result;
  78. }
  79. /**
  80. * 保存图集图片
  81. * @author 小虎哥 by 2018-4-3
  82. */
  83. public function saveimg($aid, $post = array())
  84. {
  85. $imgupload = isset($post['imgupload']) ? $post['imgupload'] : array();
  86. $imgintro = isset($post['imgintro']) ? $post['imgintro'] : array();
  87. if (!empty($imgupload)) {
  88. array_pop($imgupload); // 弹出最后一个
  89. // 删除产品图片
  90. $this->delImgUpload($aid);
  91. // 添加图片
  92. $data = array();
  93. $sort_order = 0;
  94. foreach($imgupload as $key => $val)
  95. {
  96. if($val == null || empty($val)) continue;
  97. $filesize = 0;
  98. $img_info = array();
  99. if (is_http_url($val)) {
  100. $imgurl = handle_subdir_pic($val);
  101. } else {
  102. $imgurl = ROOT_PATH.ltrim($val, '/');
  103. $filesize = @filesize('.'.$val);
  104. }
  105. $img_info = @getimagesize($imgurl);
  106. $width = isset($img_info[0]) ? $img_info[0] : 0;
  107. $height = isset($img_info[1]) ? $img_info[1] : 0;
  108. $type = isset($img_info[2]) ? $img_info[2] : 0;
  109. $attr = isset($img_info[3]) ? $img_info[3] : '';
  110. $mime = isset($img_info['mime']) ? $img_info['mime'] : '';
  111. $title = !empty($post['title']) ? $post['title'] : '';
  112. $intro = !empty($imgintro[$key]) ? $imgintro[$key] : '';
  113. ++$sort_order;
  114. $data[] = array(
  115. 'aid' => $aid,
  116. 'title' => $title,
  117. 'image_url' => $val,
  118. 'intro' => $intro,
  119. 'width' => $width,
  120. 'height' => $height,
  121. 'filesize' => $filesize,
  122. 'mime' => $mime,
  123. 'sort_order' => $sort_order,
  124. 'add_time' => getTime(),
  125. );
  126. }
  127. if (!empty($data)) {
  128. Db::name('ImagesUpload')->insertAll($data);
  129. // 没有封面图时,取第一张图作为封面图
  130. $litpic = isset($post['litpic']) ? $post['litpic'] : '';
  131. if (empty($litpic)) {
  132. $litpic = $data[0]['image_url'];
  133. Db::name('archives')->where(array('aid'=>$aid))->update(array('litpic'=>$litpic, 'update_time'=>getTime()));
  134. }
  135. }
  136. delFile(UPLOAD_PATH."images/thumb/$aid"); // 删除缩略图
  137. }
  138. }
  139. /**
  140. * 获取单条记录
  141. */
  142. public function getInfo($aid, $field = null, $isshowbody = true)
  143. {
  144. $result = array();
  145. $field = !empty($field) ? $field : '*';
  146. $result = Db::name('archives')->field($field)
  147. ->where([
  148. 'aid' => $aid,
  149. 'lang' => get_home_lang(),
  150. ])
  151. ->find();
  152. if ($isshowbody) {
  153. $tableName = M('channeltype')->where('id','eq',$result['channel'])->getField('table');
  154. $result['addonFieldExt'] = Db::name($tableName.'_content')->where('aid',$aid)->find();
  155. }
  156. if (!empty($result['channel']) && 5 === intval($result['channel'])) {
  157. $result['courseware'] = Db::name('media_content')->where('aid',$aid)->value('courseware');
  158. }
  159. // 文章TAG标签
  160. if (!empty($result)) {
  161. $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
  162. $tags = model('Taglist')->getListByAid($aid, $typeid);
  163. if (!empty($tags['tag_arr'])){
  164. $result['tags'] = $tags['tag_arr'];
  165. }else{
  166. $result['tags'] = '';
  167. }
  168. }
  169. return $result;
  170. }
  171. /**
  172. * 获取单条图集的所有图片
  173. * @author 小虎哥 by 2018-4-3
  174. */
  175. public function getImgUpload($aid, $field = '*')
  176. {
  177. $result = Db::name('ImagesUpload')->field($field)
  178. ->where('aid', $aid)
  179. ->order('sort_order asc')
  180. ->select();
  181. return $result;
  182. }
  183. /**
  184. * 查询解析模型数据用以构造from表单
  185. */
  186. public function dealChannelPostData($channel_id, $data = array(), $dataExt = array())
  187. {
  188. if (!empty($dataExt) && !empty($channel_id)) {
  189. $nowDataExt = array();
  190. $fieldTypeList = model('Channelfield')->getListByWhere(array('channel_id'=>$channel_id), 'name,dtype', 'name');
  191. foreach ($dataExt as $key => $val) {
  192. /*处理复选框取消选中的情况下*/
  193. if (preg_match('/^(.*)(_eyempty)$/', $key) && empty($val)) {
  194. $key = preg_replace('/^(.*)(_eyempty)$/', '$1', $key);
  195. $nowDataExt[$key] = '';
  196. continue;
  197. }
  198. /*end*/
  199. $key = preg_replace('/^(.*)(_eyou_is_remote|_eyou_remote|_eyou_local)$/', '$1', $key);
  200. $dtype = !empty($fieldTypeList[$key]) ? $fieldTypeList[$key]['dtype'] : '';
  201. switch ($dtype) {
  202. case 'checkbox':
  203. {
  204. $val = implode(',', $val);
  205. break;
  206. }
  207. case 'region':
  208. {
  209. if (!is_numeric($val)) { // 三级联动
  210. //选择全国的时候干掉城市区域的值
  211. if ($val[0] == 0){
  212. if (isset($val[1])) unset($val[1]);
  213. if (isset($val[2])) unset($val[2]);
  214. }else{
  215. $parent_data = Db::name('region')->where('id',$val[0])->find();
  216. if (!empty($parent_data) && !empty($parent_data['parent_id'])){
  217. //只有市级和区域能选择
  218. array_unshift($val,$parent_data['parent_id']);
  219. //只有区域能选择
  220. if (3 == $parent_data['level']){
  221. $parent_id = Db::name('region')->where('id',$val[0])->value('parent_id');
  222. array_unshift($val,$parent_id);
  223. }
  224. }
  225. }
  226. //三级联动的需要选择
  227. $val = implode(',', $val);
  228. } else {
  229. if (is_array($val)) {
  230. $new_val = [];
  231. foreach ($val as $_k => $_v) {
  232. $_v = trim($_v);
  233. if (!empty($_v)) {
  234. $new_val[] = $_v;
  235. }
  236. }
  237. $val = $new_val;
  238. } else {
  239. $val = trim($val);
  240. }
  241. }
  242. break;
  243. }
  244. case 'switch':
  245. case 'int':
  246. {
  247. $val = intval($val);
  248. break;
  249. }
  250. case 'img':
  251. {
  252. $val = $dataExt[$key];
  253. break;
  254. }
  255. case 'imgs':
  256. {
  257. $eyou_imgupload_list = [];
  258. foreach ($val as $k2 => $v2) {
  259. $v2 = trim($v2);
  260. if (empty($v2)) continue;
  261. $eyou_imgupload_list[] = [
  262. 'image_url' => handle_subdir_pic($v2),
  263. 'intro' => '',
  264. ];
  265. }
  266. $val = serialize($eyou_imgupload_list);
  267. break;
  268. }
  269. case 'files':
  270. {
  271. foreach ($val as $k2 => $v2) {
  272. if (empty($v2)) {
  273. unset($val[$k2]);
  274. continue;
  275. }
  276. $val[$k2] = trim($v2);
  277. }
  278. $val = implode(',', $val);
  279. break;
  280. }
  281. case 'datetime':
  282. {
  283. $val = !empty($val) ? strtotime($val) : getTime();
  284. break;
  285. }
  286. case 'decimal':
  287. {
  288. $moneyArr = explode('.', $val);
  289. $money1 = !empty($moneyArr[0]) ? intval($moneyArr[0]) : '0';
  290. $money2 = !empty($moneyArr[1]) ? intval(msubstr($moneyArr[1], 0, 2)) : '00';
  291. $val = $money1.'.'.$money2;
  292. break;
  293. }
  294. case 'htmltext':
  295. {
  296. if (!empty($val)) {
  297. $val = preg_replace("/^&amp;nbsp;/i", "", $val);
  298. }
  299. $val = preg_replace("/&lt;script[\s\S]*?script&gt;/i", "", $val);
  300. $val = trim($val);
  301. }
  302. default:
  303. {
  304. if (is_array($val)) {
  305. $new_val = [];
  306. foreach ($val as $_k => $_v) {
  307. $_v = trim($_v);
  308. if (!empty($_v)) {
  309. $new_val[] = $_v;
  310. }
  311. }
  312. $val = $new_val;
  313. } else {
  314. $val = trim($val);
  315. }
  316. break;
  317. }
  318. }
  319. $nowDataExt[$key] = $val;
  320. }
  321. $nowData = array(
  322. 'aid' => $data['aid'],
  323. 'add_time' => getTime(),
  324. 'update_time' => getTime(),
  325. );
  326. $nowDataExt = array_merge($nowDataExt, $nowData);
  327. $tableExt = M('channeltype')->where('id', $channel_id)->getField('table');
  328. $tableExt .= '_content';
  329. $count = M($tableExt)->where('aid', $data['aid'])->count();
  330. if (empty($count)) {
  331. M($tableExt)->insert($nowDataExt);
  332. } else {
  333. M($tableExt)->where('aid', $data['aid'])->save($nowDataExt);
  334. }
  335. }
  336. }
  337. /**
  338. * 查询解析数据表的数据用以构造from表单
  339. * @param return $list
  340. * @param 用于添加,不携带数据
  341. */
  342. public function GetUsersReleaseData($channel_id = null, $typeid = null, $aid = null, $method = 'add')
  343. {
  344. $hideField = array('id','aid','add_time','update_time','content_ey_m'); // 不显示在发布表单的字段
  345. $channel_id = intval($channel_id);
  346. $map = array(
  347. 'channel_id' => array('eq', $channel_id),
  348. 'name' => array('notin', $hideField),
  349. 'ifmain' => 0,
  350. 'ifeditable' => 1,
  351. 'is_release' => 1,
  352. );
  353. $row = model('Channelfield')->getListByWhere($map, '*');
  354. /*编辑时显示的数据*/
  355. $addonRow = array();
  356. if ('edit' == $method) {
  357. if (6 == $channel_id) {
  358. $aid = Db::name('archives')->where(array('typeid'=>$typeid, 'channel'=>$channel_id))->getField('aid');
  359. }
  360. $tableExt = Db::name('channeltype')->where('id', $channel_id)->getField('table');
  361. $tableExt .= '_content';
  362. $addonRow = Db::name($tableExt)->field('*')->where('aid', $aid)->find();
  363. }
  364. /*--end*/
  365. $channelfieldBindRow = Db::name('channelfield_bind')->where([
  366. 'typeid' => ['IN', [0, $typeid]],
  367. ])->column('field_id');
  368. foreach ($row as $key=>$val){
  369. if (!in_array($val['id'], $channelfieldBindRow) && !in_array($val['name'], ['content','content_ey_m'])) {
  370. unset($row[$key]);
  371. }
  372. }
  373. $list = $this->showViewFormData($row, 'addonFieldExt', $addonRow);
  374. return $list;
  375. }
  376. /**
  377. * 查询解析数据表的数据用以构造from表单
  378. * @param return $list
  379. * @param 用于修改,携带数据
  380. * @author 陈风任 by 2019-2-20
  381. */
  382. public function getDataParaList($users_id = '')
  383. {
  384. // 字段及内容数据处理
  385. $row = M('users_parameter')->field('a.*,b.info,b.users_id')
  386. ->alias('a')
  387. ->join('__USERS_LIST__ b', "a.para_id = b.para_id AND b.users_id = {$users_id}", 'LEFT')
  388. ->where([
  389. 'a.lang' => $this->home_lang,
  390. 'a.is_hidden' => 0,
  391. ])
  392. ->order('a.sort_order asc,a.para_id asc')
  393. ->select();
  394. // 根据所需数据格式,拆分成一维数组
  395. $addonRow = [];
  396. foreach ($row as $key => $value) {
  397. $addonRow[$value['name']] = $value['info'];
  398. }
  399. // 根据不同字段类型封装数据
  400. $list = $this->showViewFormData($row, 'users_', $addonRow);
  401. return $list;
  402. }
  403. /**
  404. * 处理页面显示字段的表单数据
  405. * @param array $list 字段列表
  406. * @param array $formFieldStr 表单元素名称的统一数组前缀
  407. * @param array $addonRow 字段的数据
  408. * @author 陈风任 by 2019-2-20
  409. */
  410. public function showViewFormData($list, $formFieldStr, $addonRow = array())
  411. {
  412. if (!empty($list)) {
  413. foreach ($list as $key => $val) {
  414. $val['fieldArr'] = $formFieldStr;
  415. switch ($val['dtype']) {
  416. case 'int':
  417. {
  418. if (isset($addonRow[$val['name']])) {
  419. $val['dfvalue'] = $addonRow[$val['name']];
  420. } else {
  421. if(preg_match("#[^0-9]#", $val['dfvalue']))
  422. {
  423. $val['dfvalue'] = "";
  424. }
  425. }
  426. break;
  427. }
  428. case 'float':
  429. case 'decimal':
  430. {
  431. if (isset($addonRow[$val['name']])) {
  432. $val['dfvalue'] = $addonRow[$val['name']];
  433. } else {
  434. if(preg_match("#[^0-9\.]#", $val['dfvalue']))
  435. {
  436. $val['dfvalue'] = "";
  437. }
  438. }
  439. break;
  440. }
  441. case 'select':
  442. {
  443. $dfvalue = $val['dfvalue'];
  444. $dfvalueArr = explode(',', $dfvalue);
  445. $val['dfvalue'] = $dfvalueArr;
  446. if (isset($addonRow[$val['name']])) {
  447. $val['trueValue'] = explode(',', $addonRow[$val['name']]);
  448. } else {
  449. $dfTrueValue = !empty($dfvalueArr[0]) ? $dfvalueArr[0] : '';
  450. $val['trueValue'] = array();
  451. }
  452. break;
  453. }
  454. case 'radio':
  455. {
  456. $dfvalue = $val['dfvalue'];
  457. $dfvalueArr = explode(',', $dfvalue);
  458. $val['dfvalue'] = $dfvalueArr;
  459. if (isset($addonRow[$val['name']])) {
  460. $val['trueValue'] = explode(',', $addonRow[$val['name']]);
  461. } else {
  462. $dfTrueValue = !empty($dfvalueArr[0]) ? $dfvalueArr[0] : '';
  463. $val['trueValue'] = array($dfTrueValue);
  464. }
  465. break;
  466. }
  467. case 'region':
  468. {
  469. $dfvalue = unserialize($val['dfvalue']);
  470. $RegionData = [];
  471. $region_ids = explode(',', $dfvalue['region_ids']);
  472. foreach ($region_ids as $id_key => $id_value) {
  473. $RegionData[$id_key]['id'] = $id_value;
  474. }
  475. $region_names = explode(',', $dfvalue['region_names']);
  476. foreach ($region_names as $name_key => $name_value) {
  477. $RegionData[$name_key]['name'] = $name_value;
  478. }
  479. $val['dfvalue'] = $RegionData;
  480. if (isset($addonRow[$val['name']])) {
  481. $val['trueValue'] = explode(',', $addonRow[$val['name']]);
  482. } else {
  483. if ( !empty($val['set_type']) && 1 == $val['set_type']){
  484. $val['trueValue'] = [];
  485. }else {
  486. $dfTrueValue = !empty($dfvalueArr[0]) ? $dfvalueArr[0] : '';
  487. $val['trueValue'] = array($dfTrueValue);
  488. }
  489. }
  490. if ( !empty($val['set_type']) && 1 == $val['set_type']){
  491. //三级联动的需要处理
  492. $rid = $val['dfvalue'][0]['id'];
  493. $region_data = Db::name('region')->where('id',$rid)->find();//这里查出来的只能是省级1或者市级2
  494. $val['region_level'] = $region_data['level'];
  495. $region_arr = [['id'=>-1,'name'=>'请选择']];
  496. if (2 == $region_data['level']){
  497. $province_list = get_province_list();
  498. $val['city_list'] = array_merge($region_arr,$val['dfvalue']);
  499. $val['trueValue'][0] = $region_data['parent_id'];
  500. $val['dfvalue'] = $province_list;
  501. }elseif (3 == $region_data['level']){
  502. $province_list = get_province_list();
  503. $province_id = Db::name('region')->where('id',$region_data['parent_id'])->value('parent_id');
  504. $val['area_list'] = array_merge($region_arr,$val['dfvalue']);
  505. $val['dfvalue'] = $province_list;
  506. $val['trueValue'][0] = $province_id;
  507. $val['trueValue'][1] = $region_data['parent_id'];
  508. if (empty($val['trueValue'][2])) $val['trueValue'][2] = -1;
  509. }
  510. if (!empty($val['trueValue'][1])){
  511. $field_region_type = config('global.field_region_type');
  512. //如果是4个特殊的直辖市,市的数据直接显示到区
  513. if (in_array($val['trueValue'][0],$field_region_type)){
  514. $city_ids = Db::name('region')->where(['level'=>2,'parent_id'=>$val['trueValue'][0]])->column('id');
  515. $city_list = Db::name('region')->where(['level'=>3])->where('parent_id','in',$city_ids)->select();
  516. }else{
  517. $city_list = Db::name('region')->where(['level'=>2,'parent_id'=>$val['trueValue'][0]])->select();
  518. }
  519. $val['city_list'] = array_merge($region_arr,$city_list);
  520. }
  521. if (!empty($val['trueValue'][2])){
  522. $area_list = Db::name('region')->where(['level'=>3,'parent_id'=>$val['trueValue'][1]])->select();
  523. $val['area_list'] = array_merge($region_arr,$area_list);
  524. }
  525. }
  526. break;
  527. }
  528. case 'checkbox':
  529. {
  530. $dfvalue = $val['dfvalue'];
  531. $dfvalueArr = explode(',', $dfvalue);
  532. $val['dfvalue'] = $dfvalueArr;
  533. if (isset($addonRow[$val['name']])) {
  534. $val['trueValue'] = explode(',', $addonRow[$val['name']]);
  535. } else {
  536. $val['trueValue'] = array();
  537. }
  538. break;
  539. }
  540. case 'img':
  541. {
  542. if (isset($addonRow[$val['name']])) {
  543. $val['dfvalue'] = handle_subdir_pic($addonRow[$val['name']]);
  544. }
  545. break;
  546. }
  547. case 'file':
  548. {
  549. if (isset($addonRow[$val['name']])) {
  550. $val['dfvalue'] = handle_subdir_pic($addonRow[$val['name']]);
  551. }
  552. $ext = tpCache('basic.file_type');
  553. $val['ext'] = !empty($ext) ? $ext : "zip|gz|rar|iso|doc|xls|ppt|wps";
  554. $val['filesize'] = upload_max_filesize();
  555. break;
  556. }
  557. case 'media':
  558. {
  559. if (isset($addonRow[$val['name']])) {
  560. $val['dfvalue'] = handle_subdir_pic($addonRow[$val['name']],'media');
  561. }
  562. $val['upload_flag'] = 'local';
  563. $WeappConfig = Db::name('weapp')->field('code, status')->where('code', 'IN', ['Qiniuyun', 'AliyunOss', 'Cos'])->where('status',1)->select();
  564. foreach ($WeappConfig as $value) {
  565. if ('Qiniuyun' == $value['code']) {
  566. $val['upload_flag'] = 'qny';
  567. } else if ('AliyunOss' == $value['code']) {
  568. $val['upload_flag'] = 'oss';
  569. } else if ('Cos' == $value['code']) {
  570. $val['upload_flag'] = 'cos';
  571. }
  572. }
  573. $ext = tpCache('basic.media_type');
  574. $val['ext'] = !empty($ext) ? $ext : "swf|mpg|mp3|rm|rmvb|wmv|wma|wav|mid|mov|mp4";
  575. $val['filesize'] = upload_max_filesize();
  576. break;
  577. }
  578. case 'imgs':
  579. {
  580. $val[$val['name'].'_eyou_imgupload_list'] = array();
  581. if (isset($addonRow[$val['name']]) && !empty($addonRow[$val['name']])) {
  582. if (preg_match('/^a\:(\d+)\:\{/', $addonRow[$val['name']])) {
  583. $eyou_imgupload_list = unserialize($addonRow[$val['name']]);
  584. } else {
  585. $eyou_imgupload_list = explode(',', $addonRow[$val['name']]);
  586. foreach ($eyou_imgupload_list as $_k => $_v) {
  587. $eyou_imgupload_list[$_k] = [
  588. 'image_url' => $_v,
  589. 'intro' => '',
  590. ];
  591. }
  592. }
  593. //支持子目录
  594. foreach ($eyou_imgupload_list as $k1 => $v1) {
  595. $eyou_imgupload_list[$k1]['image_url'] = handle_subdir_pic($v1['image_url']);
  596. }
  597. $val[$val['name'].'_eyou_imgupload_list'] = $eyou_imgupload_list;
  598. }
  599. break;
  600. }
  601. case 'datetime':
  602. {
  603. $val['dfvalue'] = !empty($addonRow[$val['name']]) ? date('Y-m-d H:i:s', $addonRow[$val['name']]) : date('Y-m-d H:i:s');
  604. break;
  605. }
  606. case 'htmltext':
  607. {
  608. $val['dfvalue'] = isset($addonRow[$val['name']]) ? $addonRow[$val['name']] : $val['dfvalue'];
  609. $val['dfvalue'] = handle_subdir_pic($val['dfvalue'], 'html');//支持子目录
  610. break;
  611. }
  612. default:
  613. {
  614. $val['dfvalue'] = isset($addonRow[$val['name']]) ? $addonRow[$val['name']] : $val['dfvalue'];
  615. if (is_string($val['dfvalue'])) {
  616. //支持子目录
  617. $val['dfvalue'] = handle_subdir_pic($val['dfvalue'], 'html');
  618. $val['dfvalue'] = handle_subdir_pic($val['dfvalue']);
  619. }
  620. break;
  621. }
  622. }
  623. $list[$key] = $val;
  624. }
  625. }
  626. return $list;
  627. }
  628. }