shopxo/config/shopxo.php

97 lines
3.6 KiB
PHP
Raw Normal View History

2018-12-29 13:13:09 +08:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
2019-02-18 13:52:07 +08:00
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
2018-12-29 13:13:09 +08:00
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 应用设置
// +----------------------------------------------------------------------
return [
2019-02-09 09:15:23 +08:00
// 开发模式
2020-04-07 17:29:57 +08:00
'is_develop' => false,
2019-02-09 09:15:23 +08:00
2018-12-29 13:13:09 +08:00
// 默认编码
'default_charset' => 'utf-8',
// 缓存key列表
// 公共系统配置信息key
2020-01-16 15:01:30 +08:00
'cache_common_my_config_key' => 'cache_common_my_config_data',
2018-12-29 13:13:09 +08:00
// 前台顶部导航,后端菜单更新则删除缓存
2020-01-16 15:01:30 +08:00
'cache_common_home_nav_header_key' => 'cache_common_home_nav_header_data',
2018-12-29 13:13:09 +08:00
// 前台顶部导航
2020-01-16 15:01:30 +08:00
'cache_common_home_nav_footer_key' => 'cache_common_home_nav_footer_data',
2018-12-29 13:13:09 +08:00
// 商品大分类缓存
2020-01-16 15:01:30 +08:00
'cache_goods_category_key' => 'cache_goods_category_key_data',
// 应用数据缓存
2020-01-16 15:01:30 +08:00
'cache_plugins_data_key' => 'cache_plugins_data_key_data_',
2019-05-17 17:47:47 +08:00
// 用户登录左侧数据
2020-01-16 15:01:30 +08:00
'cache_user_login_left_key' => 'cache_user_login_left_data',
2019-05-17 17:47:47 +08:00
// 用户密码找回左侧数据
2020-01-16 15:01:30 +08:00
'cache_user_forgetpwd_left_key' => 'cache_user_forgetpwd_left_data',
2019-05-17 17:47:47 +08:00
2019-05-20 18:35:28 +08:00
// 配置信息一条缓存 拼接唯一标记 [ only_tag ]
2020-01-16 15:01:30 +08:00
'cache_config_row_key' => 'cache_config_row_data_',
2019-05-20 18:35:28 +08:00
2019-06-29 15:11:53 +08:00
// 用户缓存信息
2020-01-16 15:01:30 +08:00
'cache_user_info' => 'cache_user_info_',
2019-06-29 15:11:53 +08:00
2020-04-03 16:28:01 +08:00
// 首页楼层缓存信息
'cache_goods_floor_list_key' => 'cache_goods_floor_list_data',
// 轮播缓存信息
'cache_banner_list_key' => 'cache_banner_list_data_',
// 导航缓存信息
'cache_navigation_key' => 'cache_navigation_data_',
2019-01-14 00:23:39 +08:00
// 附件host, 数据库图片地址以/static/...开头
2020-01-16 15:01:30 +08:00
'attachment_host' => defined('__MY_PUBLIC_URL__') ? substr(__MY_PUBLIC_URL__, 0, -1) : '',
2018-12-29 13:13:09 +08:00
2019-06-13 17:10:36 +08:00
// 应用商店地址
2020-01-16 15:01:30 +08:00
'store_url' => 'https://store.shopxo.net/',
'store_payment_url' => 'https://store.shopxo.net/payment.html',
'store_theme_url' => 'https://store.shopxo.net/theme.html',
2019-06-13 17:10:36 +08:00
2018-12-29 13:13:09 +08:00
// 开启U带域名
2020-01-16 15:01:30 +08:00
'url_domain_deploy' => true,
2018-12-29 13:13:09 +08:00
// 支付业务类型,支付插件根据业务类型自动生成支付入口文件
'payment_business_type_all' => [
['name' => 'Order', 'desc' => '订单'],
],
// 不删除的支付方式
'payment_cannot_deleted_list' => [
'DeliveryPayment',
'CashPayment',
],
2018-12-29 13:13:09 +08:00
// 线下支付方式
'under_line_list' => ['CashPayment', 'DeliveryPayment'],
2019-07-01 01:07:07 +08:00
// 小程序平台
2020-01-16 15:01:30 +08:00
'mini_app_type_list' => ['weixin', 'alipay', 'baidu', 'toutiao', 'qq'],
2020-01-29 21:09:47 +08:00
// 坐标需要转换的平台
'coordinate_transformation' => ['alipay', 'weixin', 'toutiao', 'baidu'],
2020-02-04 17:18:14 +08:00
// 价格符号
'price_symbol' => '¥',
2020-06-03 13:38:13 +08:00
// 验证码最大验证次数,防止暴力破解
'security_prevent_violence_max' => 6,
2018-12-29 13:13:09 +08:00
];
?>