vr-shopxo-source/application/admin/config/app.php

40 lines
1.2 KiB
PHP
Raw Normal View History

2018-12-28 10:58:37 +00:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
2019-02-18 05:52:07 +00:00
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
2018-12-28 10:58:37 +00:00
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
/**
* 模块配置信息
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-01T21:51:08+0800
*/
2018-12-29 05:13:09 +00:00
return [
2019-07-08 13:06:39 +00:00
// 默认输出类型
'default_return_type' => 'html',
// 默认AJAX 数据返回格式,可选json xml ...
'default_ajax_return' => 'json',
2018-12-28 10:58:37 +00:00
// 缓存key列表
// 权限缓存存储key
'cache_admin_power_key' => 'cache_admin_power_',
// 菜单列表
'cache_admin_left_menu_key' => 'cache_admin_left_menu_',
// URL模式
'URL_MODEL' => 0,
// 设置默认的模板主题
'DEFAULT_THEME' => 'Default',
2018-12-29 05:13:09 +00:00
];
?>