Ei kuvausta
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.

Weapp.php 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. // use app\admin\logic\WeappLogic;
  17. /**
  18. * 插件模型
  19. */
  20. class Weapp extends Model
  21. {
  22. public $weappLogic;
  23. //初始化
  24. protected function initialize()
  25. {
  26. // 需要调用`Model`的`initialize`方法
  27. parent::initialize();
  28. // $this->weappLogic = new WeappLogic();
  29. }
  30. /**
  31. * 获取插件列表
  32. */
  33. public function getList($where = array()){
  34. $result = Db::name('weapp')->where($where)->getAllWithIndex('code');
  35. foreach ($result as $key => $val) {
  36. $config = include WEAPP_PATH.$val['code'].DS.'config.php';
  37. $val['config'] = json_encode($config);
  38. $result[$key] = $val;
  39. }
  40. return $result;
  41. }
  42. /**
  43. * 清除插件列表的缓存
  44. */
  45. public function clearWeappCache()
  46. {
  47. \think\Cache::clear('weapp');
  48. cache('common_weapp_getWeappList', null);
  49. $weappM = new \app\common\model\Weapp;
  50. $weappM->getWeappList();
  51. }
  52. /**
  53. * 获取插件列表所有信息,方便系统其它地方使用
  54. */
  55. public function getWeappList($code = '')
  56. {
  57. $weappM = new \app\common\model\Weapp;
  58. return $weappM->getWeappList($code);
  59. }
  60. }