1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- // +----------------------------------------------------------------------
- // | Niucloud-admin 企业快速开发的多应用管理平台
- // +----------------------------------------------------------------------
- // | 官方网址:https://www.niucloud.com
- // +----------------------------------------------------------------------
- // | niucloud团队 版权所有 开源版本可自由商用
- // +----------------------------------------------------------------------
- // | Author: Niucloud Team
- // +----------------------------------------------------------------------
- namespace addon\mall\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_mall_cart.normal'),
- self::INVALID => get_lang('dict_mall_cart.invalid'),
- ];
- if ($status == '') return $list;
- return $list[$status] ?? '';
- }
- }
|