config.php
3.1 KB
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
<?php
return array(
0 =>
array(
'name' => 'app_id',
'title' => 'app_id',
'type' => 'string',
'content' =>
array(),
'value' => 'your appid',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
),
1 =>
array(
'name' => 'secret',
'title' => 'secret',
'type' => 'string',
'content' =>
array(),
'value' => 'your secret',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
),
2 =>
array(
'name' => 'token',
'title' => 'token',
'type' => 'string',
'content' =>
array(),
'value' => 'your token',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
),
3 =>
array(
'name' => 'aes_key',
'title' => 'aes_key',
'type' => 'string',
'content' =>
array(),
'value' => 'your aes_key',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
),
4 =>
array(
'name' => 'debug',
'title' => '调试模式',
'type' => 'radio',
'content' =>
array(
0 => '否',
1 => '是',
),
'value' => '1',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
),
5 =>
array(
'name' => 'log_level',
'title' => '日志记录等级',
'type' => 'select',
'content' =>
array(
'debug' => 'debug',
'info' => 'info',
'notice' => 'notice',
'warning' => 'warning',
'error' => 'error',
'critical' => 'critical',
'alert' => 'alert',
'emergency' => 'emergency',
),
'value' => 'debug',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
),
6 =>
array(
'name' => 'oauth_callback',
'title' => '登录回调',
'type' => 'string',
'content' =>
array(),
'value' => 'http://www.yoursite.com/addons/wechat/index/callback',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
),
);