WechatMediaDict.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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\sys;
  12. class WechatMediaDict
  13. {
  14. public const IMAGE = 'image';
  15. public const VOICE = 'voice';
  16. public const VIDEO = 'video';
  17. public const NEWS = 'news';
  18. /**
  19. * 获取状态
  20. * @return array
  21. */
  22. public static function getTypeList()
  23. {
  24. return [
  25. self::IMAGE => get_lang('dict_wechat_media.type_image'),
  26. self::VOICE => get_lang('dict_wechat_media.type_voice'),
  27. self::VIDEO => get_lang('dict_wechat_media.type_video'),
  28. self::NEWS => get_lang('dict_wechat_media.type_news')
  29. ];
  30. }
  31. }