LiveSetting.php 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. /**
  3. * 商品管理
  4. */
  5. namespace app\admin\controller;
  6. use think\facade\View;
  7. use think\facade\Lang;
  8. /**
  9. * ============================================================================
  10. * DSKMS多用户商城
  11. * ============================================================================
  12. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  13. * 网站地址: http://www.csdeshang.com
  14. * ----------------------------------------------------------------------------
  15. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  16. * 不允许对程序代码以任何形式任何目的的再发布。
  17. * ============================================================================
  18. * 控制器
  19. */
  20. class LiveSetting extends AdminControl {
  21. public function initialize() {
  22. parent::initialize();
  23. Lang::load(base_path() . 'admin/lang/' . config('lang.default_lang') . '/live_setting.lang.php');
  24. }
  25. public function index() {
  26. $config_model = model('config');
  27. if (!request()->isPost()) {
  28. $list_config = rkcache('config', true);
  29. View::assign('list_config', $list_config);
  30. $this->setAdminCurItem('index');
  31. return View::fetch();
  32. } else {
  33. $update_array=array();
  34. $update_array['live_type'] = input('post.live_type');
  35. $update_array['vod_tencent_play_key'] = input('post.vod_tencent_play_key');
  36. $update_array['vod_tencent_appid'] = input('post.vod_tencent_appid');
  37. $update_array['vod_tencent_play_domain'] = input('post.vod_tencent_play_domain');
  38. $update_array['vod_tencent_secret_id'] = input('post.vod_tencent_secret_id');
  39. $update_array['vod_tencent_secret_key'] = input('post.vod_tencent_secret_key');
  40. $update_array['live_push_domain'] = input('param.live_push_domain');
  41. $update_array['live_push_key'] = input('param.live_push_key');
  42. $update_array['live_play_domain'] = input('param.live_play_domain');
  43. $update_array['video_type'] = input('param.video_type');
  44. $update_array['aliyun_user_id'] = input('param.aliyun_user_id');
  45. $update_array['aliyun_access_key_id'] = input('param.aliyun_access_key_id');
  46. $update_array['aliyun_access_key_secret'] = input('param.aliyun_access_key_secret');
  47. $update_array['aliyun_live_push_domain'] = input('post.aliyun_live_push_domain');
  48. $update_array['aliyun_live_push_key'] = input('post.aliyun_live_push_key');
  49. $update_array['aliyun_live_play_domain'] = input('post.aliyun_live_play_domain');
  50. $update_array['aliyun_live_play_key'] = input('post.aliyun_live_play_key');
  51. $result = $config_model->editConfig($update_array);
  52. if ($result) {
  53. dkcache('config');
  54. $this->log(lang('ds_edit') . lang('live_setting'), 1);
  55. $this->success(lang('ds_common_save_succ'));
  56. } else {
  57. $this->log(lang('ds_edit') . lang('live_setting'), 0);
  58. }
  59. }
  60. }
  61. /**
  62. * 获取卖家栏目列表,针对控制器下的栏目
  63. */
  64. protected function getAdminItemList() {
  65. $menu_array = array(
  66. array(
  67. 'name' => 'index',
  68. 'text' => lang('ds_setting'),
  69. 'url' => url('live_setting/index')
  70. ),
  71. );
  72. return $menu_array;
  73. }
  74. }
  75. ?>