params.php
1.62 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
<?php
namespace common\config;
class Params {
/**
* 业务线
*/
const YOHOBUY = 1;
const YOHOMARS = 2;
const YOHONOW = 3;
/**
* 直播未开始
*/
const LIVE_NOT_START = 0;
/**
* 直播中
*/
const LIVING = 1;
/**
* 直播已结束
*/
const LIVE_END = 2;
}
return [
'adminEmail' => 'admin@example.com',
'supportEmail' => 'support@example.com',
'user.passwordResetTokenExpire' => 3600,
'config'=>[
//业务线
'app'=>[
Params::YOHOBUY=>'有货',
Params::YOHOMARS=>'火星',
Params::YOHONOW=>'媒体'
],
//是否精选
'best'=>[
0=>'否',
1=>'精选1',
2=>'精选2',
],
//马甲状态
'vest'=>[
0=>'关闭',
1=>'最慢',
2=>'一般',
3=>'最快'
],
//直播状态
'room_living'=>[
Params::LIVE_NOT_START=>'未开始',
Params::LIVING=>'直播中',
Params::LIVE_END=>'已结束',
],
//未被禁言状态
'un_forbid_stat'=>0,
//被禁言状态
'is_forbid_stat'=>1,
],
/**
* 分页每页数目
*/
'defaultPageSize'=>10,
/**
* 缓存超时时间
*/
'defaultCacheExpire'=>7200,
/**
* 默认缓存前缀
*/
'cache_prefix'=>'YOHOLive:',
//成功状态
'success_code'=>200,
//失败状态
'failed_code'=>8001,
//异常状态
'exception_code'=>500,
'news_domain'=>'http://new.yohoboys.com/',
];