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

BaidushouluModel.php 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 weapp\Baidushoulu\model;
  14. use think\Model;
  15. /**
  16. * 模型
  17. */
  18. class BaidushouluModel extends Model
  19. {
  20. /**
  21. * 插件标识
  22. */
  23. public $code = 'Baidushoulu';
  24. //初始化
  25. protected function initialize()
  26. {
  27. // 需要调用`Model`的`initialize`方法
  28. parent::initialize();
  29. }
  30. /**
  31. * 获取数据
  32. */
  33. public function getWeappData()
  34. {
  35. static $_value = [];
  36. if (empty($_value[$this->code])) {
  37. $row = M('weapp')->where('code',$this->code)->find();
  38. if (!empty($row['data'])) {
  39. $row['data'] = unserialize($row['data']);
  40. }
  41. $_value[$this->code] = $row;
  42. }
  43. return $_value[$this->code];
  44. }
  45. }