Config.php 2.3 KB
Newer Older
D
v1.2.0  
devil_gong 已提交
1 2 3 4
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
D
devil_gong 已提交
5
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
D
v1.2.0  
devil_gong 已提交
6 7 8 9 10 11 12
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\admin\controller;

13
use app\service\ConfigService;
D
v1.2.0  
devil_gong 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

/**
 * 配置设置
 * @author   Devil
 * @blog     http://gong.gg/
 * @version  0.0.1
 * @datetime 2016-12-01T21:51:08+0800
 */
class Config extends Common
{
	/**
	 * 构造方法
	 * @author   Devil
	 * @blog     http://gong.gg/
	 * @version  0.0.1
	 * @datetime 2016-12-03T12:39:08+0800
	 */
	public function __construct()
	{
		// 调用父类前置方法
		parent::__construct();

		// 登录校验
D
devil_gong 已提交
37
		$this->IsLogin();
D
v1.2.0  
devil_gong 已提交
38 39

		// 权限校验
D
devil_gong 已提交
40
		$this->IsPower();
D
v1.2.0  
devil_gong 已提交
41 42 43
	}

	/**
D
1.5  
devil_gong 已提交
44
     * 后台配置
D
v1.2.0  
devil_gong 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
     * @author   Devil
     * @blog     http://gong.gg/
     * @version  0.0.1
     * @datetime 2016-12-06T21:31:53+0800
     */
	public function Index()
	{
		// csv
		$this->assign('common_excel_charset_list', lang('common_excel_charset_list'));

		// 扣除库存规则
		$this->assign('common_deduction_inventory_rules_list', lang('common_deduction_inventory_rules_list'));

		// 是否
		$this->assign('common_is_text_list', lang('common_is_text_list'));

		// 配置信息
		$this->assign('data', ConfigService::ConfigList());
		
		return $this->fetch();
	}

	/**
D
1.5  
devil_gong 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
     * 商店信息
     * @author   Devil
     * @blog     http://gong.gg/
     * @version  0.0.1
     * @datetime 2016-12-06T21:31:53+0800
     */
	public function Store()
	{
		// 配置信息
		$this->assign('data', ConfigService::ConfigList());
		
		return $this->fetch();
	}

	/**
	 * 配置数据保存
D
v1.2.0  
devil_gong 已提交
84 85 86 87 88 89 90
	 * @author   Devil
	 * @blog     http://gong.gg/
	 * @version  0.0.1
	 * @datetime 2017-01-02T23:08:19+0800
	 */
	public function Save()
	{
D
1.5  
devil_gong 已提交
91 92 93 94 95 96 97 98
		// 数据处理
		// 商店二维码
		if(!isset($_POST['common_customer_store_qrcode']))
		{
			$_POST['common_customer_store_qrcode'] = '';
		}
		
		// 保存
D
v1.2.0  
devil_gong 已提交
99 100 101 102
		return ConfigService::ConfigSave($_POST);
	}
}
?>