-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.php
More file actions
54 lines (52 loc) · 1.11 KB
/
options.php
File metadata and controls
54 lines (52 loc) · 1.11 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
<?php
/*@support tpl_options*/
!defined('EMLOG_ROOT') && exit('access deined!');
$options = array(
'topimg' => array(
'type' => 'image',
'name' => '顶部背景图',
'values' => array(
TEMPLATE_URL . 'images/bg.jpg',
),
),
'tximg' => array(
'type' => 'image',
'name' => '头像',
'values' => array(
TEMPLATE_URL . 'images/tx.jpg',
),
),
'jinie' =>array(
'type' => 'text',
'name' => '昵称',
'description' => '',
'values' => array(
'Jinie',
),
),
'home_strong_1' => array(
'type' => 'text',
'name' => '首页一句话',
'description' => '',
'default' => '突如其来的装逼让我无法呼吸',
),
'qq' => array(
'type' => 'text',
'name' => 'QQ账号',
'description' => '',
'default' => '837233287',
),
'webtime' => array(
'type' => 'text',
'name' => '建站日期',
'description' => '格式:xxxx-xx-xx',
'default' => '2016-07-19',
),
'music' => array(
'type' => 'text',
'name' => '音乐',
'multi' => true,
'default' => '',
'description' => '',
),
);