Нема описа
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.

ProductNetdisk.php 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. *网盘下载
  18. */
  19. class ProductNetdisk 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 saveProductNetdisk($aid, $post)
  35. {
  36. $count = Db::name('product_netdisk')->where('aid', $aid)->count();
  37. $data = [
  38. 'aid' => $aid,
  39. 'netdisk_url' => !empty($post['netdisk_url']) ? $post['netdisk_url'] : '',
  40. 'netdisk_pwd' => !empty($post['netdisk_pwd']) ? $post['netdisk_pwd'] : '',
  41. 'unzip_pwd' => !empty($post['unzip_pwd']) ? $post['unzip_pwd'] : '',
  42. 'text_content' => !empty($post['text_content']) ? $post['text_content'] : '',
  43. ];
  44. if (!empty($count)) {
  45. //更新操作
  46. $data['update_time'] = getTime();
  47. Db::name('product_netdisk')->where('aid', $aid)->update($data);
  48. } else {
  49. //新增操作
  50. $data['lang'] = get_admin_lang();
  51. $data['add_time'] = getTime();
  52. Db::name('product_netdisk')->insert($data);
  53. }
  54. }
  55. }