-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.php
More file actions
52 lines (51 loc) · 1.07 KB
/
options.php
File metadata and controls
52 lines (51 loc) · 1.07 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
<?php
/*@support tpl_options*/
!defined('EMLOG_ROOT') && exit('access deined!');
$options = array(
'topimg' => array(
'type' => 'image',
'name' => '顶部背景图',
'values' => array(
TEMPLATE_URL . 'images/1.jpg',
),
),
'tximg' => array(
'type' => 'image',
'name' => '头像',
'values' => array(
TEMPLATE_URL . 'images/zztx.jpg',
),
),
'wx' =>array(
'type' => 'image',
'name' => '微信二维码',
'values' => array(
TEMPLATE_URL . 'images/zzwx.jpg',
),
),
'logo' =>array(
'type' => 'text',
'name' => 'logo',
'values' => array(
TEMPLATE_URL . 'images/logo.png',
),
),
'home_strong_1' => array(
'type' => 'text',
'name' => '页脚文章',
'description' => '',
'default' => '突如其来的装逼让我无法呼吸',
),
'wb' => array(
'type' => 'text',
'name' => '微博链接',
'description' => '',
'default' => 'http://www.drlog.pw/',
),
'qq' => array(
'type' => 'text',
'name' => 'QQ账号',
'description' => '',
'default' => '837233287',
),
);