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

Base.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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\api\model\v1;
  14. use think\Db;
  15. use think\Model;
  16. use think\Request;
  17. use think\template\taglib\api\Base as BaseTag;
  18. /**
  19. * 小程序基类模型
  20. */
  21. class Base extends Model
  22. {
  23. /**
  24. * 当前Request对象实例
  25. * @var null
  26. */
  27. public static $request = null; // 当前Request对象实例
  28. /**
  29. * 小程序appid
  30. * @var null
  31. */
  32. public static $appId = null;
  33. /**
  34. * 语言标识
  35. */
  36. public static $lang = null;
  37. /**
  38. * 插件标识
  39. */
  40. public static $weapp_code = 'cn';
  41. /**
  42. * 平台标识
  43. */
  44. public static $provider = 'weixin';
  45. /**
  46. * 系统配置
  47. */
  48. public $globalConfig = [];
  49. public $usersConfig = [];
  50. //初始化
  51. protected function initialize()
  52. {
  53. // 需要调用`Model`的`initialize`方法
  54. parent::initialize();
  55. $this->baseTag = new BaseTag;
  56. self::$lang = BaseTag::$main_lang;
  57. self::$request = BaseTag::$request;
  58. self::$appId = input('param.appId/s');
  59. self::$provider = input('param.provider/s', 'weixin');
  60. self::$weapp_code = 'OpenMinicode';
  61. // $cmstype = input('param.cmstype');
  62. $this->globalConfig = BaseTag::$globalConfig;
  63. $this->usersConfig = BaseTag::$usersConfig;
  64. }
  65. /**
  66. * html内容里的图片地址替换成http路径
  67. * @param string $content 内容
  68. * @return string
  69. */
  70. public function html_httpimgurl($content = '', $timeVersion = false)
  71. {
  72. return $this->baseTag->html_httpimgurl($content, $timeVersion);
  73. }
  74. /**
  75. * 时间格式转换
  76. * @param integer $t [description]
  77. * @return [type] [description]
  78. */
  79. public function time_format($t = 0)
  80. {
  81. return $this->baseTag->time_format($t);
  82. }
  83. /**
  84. * 【新的默认图片】 图片不存在,显示默认无图封面
  85. * @param string $pic_url 图片路径
  86. * @param string|boolean $domain 完整路径的域名
  87. */
  88. public function get_default_pic($pic_url = '', $domain = true, $tcp = 'http')
  89. {
  90. return $this->baseTag->get_default_pic($pic_url, $domain, $tcp);
  91. }
  92. /**
  93. * 默认头像
  94. * @param string $head_pic [description]
  95. * @param boolean $is_admin [description]
  96. * @param string $sex [description]
  97. * @return [type] [description]
  98. */
  99. public function get_head_pic($head_pic = '', $is_admin = false, $sex = '保密')
  100. {
  101. return $this->baseTag->get_head_pic($head_pic, $is_admin, $sex);
  102. }
  103. /**
  104. * 设置内容标题
  105. */
  106. public function set_arcseotitle($title = '', $seo_title = '', $typename = '')
  107. {
  108. return $this->baseTag->set_arcseotitle($title, $seo_title, $typename);
  109. }
  110. }