AppletlDict.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Niucloud-admin 企业快速开发的saas管理平台
  4. // +----------------------------------------------------------------------
  5. // | 官方网址:https://www.niucloud.com
  6. // +----------------------------------------------------------------------
  7. // | niucloud团队 版权所有 开源版本可自由商用
  8. // +----------------------------------------------------------------------
  9. // | Author: Niucloud Team
  10. // +----------------------------------------------------------------------
  11. namespace app\dict\applet;
  12. /**
  13. * 小程序版本
  14. * Class ChannelDict
  15. * @package app\dict\common
  16. */
  17. class AppletlDict
  18. {
  19. public const ON = '1';
  20. public const OFF = '2';
  21. public const DOWNLOAD = 'download';//下载
  22. public const UPGRADE = 'upgrade';//升级
  23. /**
  24. * 小程序版本状态
  25. * @return array
  26. */
  27. public static function getStatus()
  28. {
  29. return [
  30. self::ON => get_lang('dict_applet.channel_weapp'),//启用
  31. self::OFF => get_lang('dict_applet.channel_wechat'),//下架
  32. ];
  33. }
  34. }