Açıklama Yok
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.

Notify.php 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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\controller;
  14. use think\Db;
  15. use think\Page;
  16. class Notify extends Base {
  17. /**
  18. * 构造方法
  19. */
  20. public function __construct() {
  21. parent::__construct();
  22. // 邮件通知配置
  23. $this->smtp_tpl_db = Db::name('smtp_tpl');
  24. // 短信通知配置
  25. $this->sms_template_db = Db::name('sms_template');
  26. // 站内信配置
  27. $this->users_notice_tpl_db = Db::name('users_notice_tpl');
  28. // 站内信通知记录表
  29. $this->users_notice_tpl_content_db = Db::name('users_notice_tpl_content');
  30. }
  31. /**
  32. * 站内信模板列表
  33. */
  34. public function notify_tpl()
  35. {
  36. $list = array();
  37. $keywords = input('keywords/s');
  38. $map = array();
  39. if (!empty($keywords)) {
  40. $map['tpl_name'] = array('LIKE', "%{$keywords}%");
  41. }
  42. // 多语言
  43. $map['lang'] = array('eq', $this->admin_lang);
  44. $count = $this->users_notice_tpl_db->where($map)->count('tpl_id');// 查询满足要求的总记录数
  45. $pageObj = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  46. $list = $this->users_notice_tpl_db->where($map)
  47. ->order('tpl_id asc')
  48. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  49. ->select();
  50. $pageStr = $pageObj->show(); // 分页显示输出
  51. $this->assign('list', $list); // 赋值数据集
  52. $this->assign('page', $pageStr); // 赋值分页输出
  53. $this->assign('pager', $pageObj); // 赋值分页对象
  54. $shop_open = getUsersConfigData('shop.shop_open');
  55. $this->assign('shop_open', $shop_open);
  56. return $this->fetch();
  57. }
  58. // 统计未读的站内信数量
  59. public function count_unread_notify()
  60. {
  61. \think\Session::pause(); // 暂停session,防止session阻塞机制
  62. $notice_where = [
  63. 'is_read' => 0,
  64. 'admin_id' => ['>', 0],
  65. ];
  66. $notice_count = $this->users_notice_tpl_content_db->where($notice_where)->count('content_id');
  67. $notice_count = intval($notice_count);
  68. if (IS_AJAX) {
  69. $this->success('查询成功', null, ['notice_count'=>$notice_count]);
  70. } else {
  71. $this->assign('notice_count', $notice_count);
  72. }
  73. }
  74. }