全栈小学生 9b55b17b54 1
2023-05-31 11:20:09 +08:00

67 lines
2.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\dict\sys;
class FileDict
{
//上传方式 图片
const IMAGE = 'image';
//上传方式 视频
const VIDEO = 'video';
//上传方式 文件
const DOCUMENT = 'document';
const LOCAL = 'local';//本地存储
const QINIU = 'qiniu';//七牛云
const ALIYUN = 'aliyun';//阿里云
const QCLOUD = 'qcloud';//腾讯云
/**
* 附件类型
* @return array
*/
public static function getType(){
return [
self::IMAGE => get_lang('dict_file.type_image'),//图片
self::VIDEO => get_lang('dict_file.type_video'),//视频
];
}
/**
* 存储方式
* @return array
*/
public static function getStorageType(){
return [
self::LOCAL => get_lang('dict_file.storage_type_local'),//本地存储
self::QINIU => get_lang('dict_file.storage_type_qiniu'),//七牛云
self::ALIYUN => get_lang('dict_file.storage_type_image'),//阿里云
self::QCLOUD => get_lang('dict_file.storage_type_qcloud'),//腾讯云
];
}
const WECHAT = 'wechat';//微信支付
/**
* 获取上传的场景
* @return array
*/
public static function getSceneType(){
return [
self::WECHAT,//微信相关上传
self::ALIYUN,//阿里云相关上传
self::IMAGE,//图片上传
self::VIDEO,//视频上传
];
}
}