暫無描述
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 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-07-04
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. use think\Config;
  16. class UsersRelease extends Base {
  17. public $current_channel = [1,3,4,5];
  18. public function __construct(){
  19. parent::__construct();
  20. // 会员中心配置信息
  21. $this->UsersConfigData = getUsersConfigData('all');
  22. $this->assign('userConfig',$this->UsersConfigData);
  23. // 模型是否开启
  24. $channeltype_row = \think\Cache::get('extra_global_channeltype');
  25. $this->assign('channeltype_row',$channeltype_row);
  26. // $this->current_channel = Db::name('channeltype')->where('is_release',1)->where('id','in',$this->current_channel)->column('id');
  27. }
  28. /**
  29. * 商城设置
  30. */
  31. public function conf(){
  32. if (IS_AJAX) {
  33. $is_automatic_review = input('param.is_automatic_review/d', 0);
  34. $is_open_posts_count = input('param.is_open_posts_count/d', 0);
  35. $release_typeids = input('param.release_typeids/s', '');
  36. $typeids = !empty($release_typeids) ? explode(',', $release_typeids) : [];
  37. $confData = [
  38. 'is_automatic_review' => $is_automatic_review,
  39. 'is_open_posts_count' => $is_open_posts_count,
  40. 'release_default_id' => !empty($typeids[0]) ? intval($typeids[0]) : 0,
  41. ];
  42. getUsersConfigData('users', $confData);
  43. /*设置可投稿的栏目*/
  44. // $typeids = explode(',', $release_typeids);
  45. $where = [
  46. 'id' => ['IN', $typeids],
  47. ];
  48. if (0 == $typeids[0]) {
  49. $where = [
  50. 'current_channel' => ['in',$this->current_channel],
  51. 'lang' => $this->admin_lang,
  52. ];
  53. }
  54. $update = [
  55. 'is_release' => 1,
  56. 'update_time' => getTime(),
  57. ];
  58. if (!empty($where) && !empty($update)) {
  59. /*将全部设置为不可投稿*/
  60. Db::name('arctype')->where([
  61. 'current_channel' => ['in',$this->current_channel],
  62. 'lang' => $this->admin_lang,
  63. ])->update([
  64. 'is_release' => 0,
  65. 'update_time' => getTime(),
  66. ]);
  67. /* END */
  68. /*设置选择的栏目为可投稿*/
  69. Db::name('arctype')->where($where)->update($update);
  70. /* END */
  71. }
  72. /* END */
  73. $this->success('设置成功!');
  74. }
  75. // 会员投稿配置信息
  76. $UsersC = getUsersConfigData('users');
  77. $this->assign('UsersC',$UsersC);
  78. /*允许发布文档列表的栏目*/
  79. $arctype = Db::name('arctype')->where([
  80. 'current_channel' => ['in',$this->current_channel],
  81. 'is_release' => 1,
  82. 'lang' => $this->admin_lang,
  83. ])->field('id')->select();
  84. $arctype = get_arr_column($arctype,'id');
  85. $select_html = allow_release_arctype($arctype, $this->current_channel);
  86. if (empty($this->current_channel)){
  87. $select_html = [];
  88. }
  89. $this->assign('select_html',$select_html);
  90. /*--end*/
  91. return $this->fetch('conf');
  92. }
  93. public function ajax_users_level_bout()
  94. {
  95. $UsersLevel = model('UsersLevel')->getList();
  96. $LevelCount = count($UsersLevel);
  97. $this->assign('list',$UsersLevel);
  98. $this->assign('LevelCount',$LevelCount);
  99. return $this->fetch();
  100. }
  101. }