mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-22 02:58:10 +00:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | Niucloud-admin 企业快速开发的多应用管理平台
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网址:https://www.niucloud.com
|
||
// +----------------------------------------------------------------------
|
||
// | niucloud团队 版权所有 开源版本可自由商用
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Niucloud Team
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace addon\shop\app\dict\cart;
|
||
|
||
class CartDict
|
||
{
|
||
//正常
|
||
const NORMAL = '1';
|
||
//失效
|
||
const INVALID = 'invalid';
|
||
|
||
|
||
/**
|
||
* 状态
|
||
* @param $status
|
||
* @return array|mixed|string
|
||
*/
|
||
public static function getStatus($status = '')
|
||
{
|
||
$list = [
|
||
self::NORMAL => get_lang('dict_shop_cart.normal'),
|
||
self::INVALID => get_lang('dict_shop_cart.invalid'),
|
||
];
|
||
if ($status == '') return $list;
|
||
return $list[ $status ] ?? '';
|
||
}
|
||
}
|