bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?php
 
 
//移动设置路径
 
define('IN_ECS', true);
 
require(dirname(__FILE__) . '/includes/init.php');
 
require(ROOT_PATH . 'includes/cls_json.php');
 
 
if ((DEBUG_MODE & 2) != 2)
{
    $smarty->caching = true;
}
 
 
 
 
$file_url = $GLOBALS['ecs']->url().'themesmobile/68ecshopcom_mobile';
 
$smarty->assign('file_url',$file_url);
 
 
$act = $_REQUEST['act'];
 
if($act == 'insert'){
 
    $url= trim($_POST['url']);
 
    if(check_exist_url()){
 
        ajax_update_pc_url($url);
 
    }
 
    else{
 
        ajax_insert_pc_url($url);
 
 
 
    }
 
 
 
 
 
}else{
 
    $sql = "select value from ".$GLOBALS['ecs']->table('ecsmart_shop_config')." where code = 'pc_url' ";
 
    $pc_url = $GLOBALS['db']->getOne($sql);
 
    $smarty->assign('pc_url',$pc_url);
    $smarty->assign('mobile-url',$GLOBALS['ecs']->url());
    $smarty->display('setting.dwt');
 
}
 
 
//插入pc_url数据信息
 
function ajax_insert_pc_url($url) {
 
    $sql = "insert into ".$GLOBALS['ecs']->table('ecsmart_shop_config',1)." (code ,value) value('pc_url', '$url') ";
 
    $GLOBALS['db']->query($sql);
 
    $id = $GLOBALS['db']->insert_id();
 
    if($id>0){
 
        $info = 'ok';
 
        $sql = "select value from ".$GLOBALS['ecs']->table('ecsmart_shop_config')." where id = '$id' ";
 
        $pc_url = $GLOBALS['db']->getOne($sql);
 
 
    }
 
    else{
 
        $info = 'no';
 
        $pc_url = '';
 
    }
 
 
    $json = new JSON();
 
    $row = array();
 
    $row['info'] = $info;
    $row['pc_url'] = $pc_url;
 
    $val = $json->encode($row);
 
    exit($val);
}
 
//更新pc_url信息
 
function ajax_update_pc_url($url) {
 
    $db = $GLOBALS['db'];
    $ecs = $GLOBALS['ecs'];
 
    $sql = "update ".$ecs->table('ecsmart_shop_config',1)." set value = '$url'  where code = 'pc_url' ";
 
    $db->query($sql);
 
    if($db->affected_rows() == 1){
 
        $info = 'ok';
    }
 
    else{
 
        $info = 'no;';
 
    }
 
    $sql = "select value from ".$ecs->table('ecsmart_shop_config')." where code = 'pc_url' ";
 
    $pc_url = $db->getOne($sql);
 
 
    $json = new JSON();
 
    $row = array();
 
    $row['info'] = $info;
    $row['pc_url'] = $pc_url;
 
    $val = $json->encode($row);
 
    exit($val);
}
 
 
function check_exist_url(){
 
    $sql = "select id from ".$GLOBALS['ecs']->table('ecsmart_shop_config')." where code = 'pc_url' ";
 
    $id = $GLOBALS['db']->getOne($sql);
 
    if($id > 0 ){
 
        return true;
    }
 
    else{
 
        return false;
 
    }
 
}
 
 
?>