13 lines
307 B
PHP
13 lines
307 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* BBS Configuration items
|
||
|
*/
|
||
|
return [
|
||
|
'home' => env('BBS_HOME', 1),
|
||
|
'inactive_login' => env('BBS_INACTIVE_LOGIN',300),
|
||
|
'inactive_nologin' => env('BBS_INACTIVE_NOLOGIN',60),
|
||
|
'login' => env('BBS_LOGIN', 98),
|
||
|
'register' => env('BBS_REGISTER', 981),
|
||
|
'welcome' => env('BBS_WELCOME', 980),
|
||
|
];
|