/[LeafOK_CVS]/fenglin/lib/common.inc.php
ViewVC logotype

Annotation of /fenglin/lib/common.inc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.32 - (hide annotations)
Thu Mar 27 12:30:12 2025 UTC (11 months, 3 weeks ago) by sysadm
Branch: MAIN
Changes since 1.31: +1 -4 lines
Refact

1 sysadm 1.1 <?
2     //Definition of const
3     $BBS_sys_uid = 600;
4     $BBS_notice_sid = 39;
5     $BBS_default_cid = 1;
6     $BBS_default_sid = 4;
7 sysadm 1.28 $BBS_name = "枫林在线论坛";
8 sysadm 1.3 $BBS_host_name = "www.fenglin.info";
9 sysadm 1.27 $BBS_license_dt = strtotime("2025-03-02 10:00:00");
10 sysadm 1.4
11 sysadm 1.30 static $BBS_no_limit_users = array(
12 sysadm 1.26 1, //Admin 系统管理员
13     600, //diliver 自动发信系统
14     2333, //cn.bbs 转信系统帐号
15     5758, //SYSOP 站务委员会
16     5755, //Arbitrator 仲裁委员会
17     7595 //BMS 版主管理员
18 sysadm 1.4 );
19    
20 sysadm 1.32 $BBS_session_lifetime = 60 * 60 * 24 * 7;
21 sysadm 1.30 $BBS_user_off_line = 60 * 15;
22 sysadm 1.8
23 sysadm 1.30 static $BBS_rpp_options = array(
24     10,
25     20,
26     30,
27     50
28     );
29 sysadm 1.28
30 sysadm 1.30 static $BBS_exp = array(
31     PHP_INT_MIN, // 0
32     50, // 1
33     200, // 2
34     500, // 3
35     1000, // 4
36     2000, // 5
37     5000, // 6
38     10000, // 7
39     20000, // 8
40     30000, // 9
41     50000, // 10
42     60000, // 11
43     70000, // 12
44     80000, // 13
45     90000, // 14
46     100000, // 15
47     PHP_INT_MAX, // 16
48 sysadm 1.29 );
49    
50 sysadm 1.30 static $BBS_level = array(
51     "新手上路", // 0
52     "初来乍练", // 1
53     "白手起家", // 2
54     "略懂一二", // 3
55     "小有作为", // 4
56     "对答如流", // 5
57     "精于此道", // 6
58     "博大精深", // 7
59     "登峰造极", // 8
60     "论坛砥柱", // 9
61     "☆☆☆☆☆", // 10
62     "★☆☆☆☆", // 11
63     "★★☆☆☆", // 12
64     "★★★☆☆", // 13
65     "★★★★☆", // 14
66     "★★★★★", // 15
67 sysadm 1.29 );
68    
69 sysadm 1.31 $BBS_user_purge_duration = 365;
70     $BBS_normal_log_retention = 60;
71     $BBS_critical_log_retention = 365;
72     $BBS_user_msg_retention = 60;
73     $BBS_new_article_period = 14;
74    
75 sysadm 1.24 $PHP_bin = "php";
76 sysadm 1.1 ?>

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1