-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathconfig.php
More file actions
executable file
·40 lines (39 loc) · 880 Bytes
/
config.php
File metadata and controls
executable file
·40 lines (39 loc) · 880 Bytes
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
<?php
return [
[
//配置唯一标识
'name' => 'root_dir',
//显示的标题
'title' => '根目录地址(注意读权限)',
//类型
'type' => 'string',
//数据字典
'content' => [
],
//值
'value' => './',
//验证规则
'rule' => 'required',
//错误消息
'msg' => '',
//提示消息
'tip' => '',
//成功消息
'ok' => '',
//扩展信息
'extend' => ''
],
[
'name' => 'ix_height',
'title' => '框架高度',
'type' => 'number',
'content' => [
],
'value' => '500',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => ''
],
];