Ingen beskrivning
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 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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\common\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 插件模型
  18. */
  19. class Weapp extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 获取插件列表所有信息,方便系统其它地方使用
  29. */
  30. public function getWeappList($code = '')
  31. {
  32. $result = cache('common_weapp_getWeappList');
  33. if (empty($result)) {
  34. $result = Db::name('weapp')->getAllWithIndex('code');
  35. foreach ($result as $key => &$value) {
  36. try {
  37. if (!empty($value['data']) && $value['data']!="[]") {
  38. if (preg_match('/^{.*}$/', $value['data'])) { // json格式
  39. $value['data'] = json_decode($value['data'], true);
  40. } else {
  41. $value['data'] = unserialize($value['data']);
  42. }
  43. }
  44. if (!empty($value['config'])) {
  45. $value['config'] = json_decode($value['config'], true);
  46. }
  47. } catch (\Exception $e) {}
  48. }
  49. cache('common_weapp_getWeappList', $result, null, 'weapp');
  50. }
  51. if (!empty($code)) {
  52. $result = !empty($result[$code]) ? $result[$code] : [];
  53. }
  54. return $result;
  55. }
  56. }