forked from snytkine/LampCMS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Points.php.dist
171 lines (147 loc) · 4.38 KB
/
Points.php.dist
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
/**
*
* License, TERMS and CONDITIONS
*
* This software is lisensed under the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) version 3
* Please read the license here : http://www.gnu.org/licenses/lgpl-3.0.txt
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* ATTRIBUTION REQUIRED
* 4. All web pages generated by the use of this software, or at least
* the page that lists the recent questions (usually home page) must include
* a link to the http://www.lampcms.com and text of the link must indicate that
* the website\'s Questions/Answers functionality is powered by lampcms.com
* An example of acceptable link would be "Powered by <a href="http://www.lampcms.com">LampCMS</a>"
* The location of the link is not important, it can be in the footer of the page
* but it must not be hidden by style attibutes
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This product includes GeoLite data created by MaxMind,
* available from http://www.maxmind.com/
*
*
* @author Dmitri Snytkine <[email protected]>
* @copyright 2005-2011 (or current year) ExamNotes.net inc.
* @license http://www.gnu.org/licenses/lgpl-3.0.txt GNU LESSER GENERAL PUBLIC LICENSE (LGPL) version 3
* @link http://www.lampcms.com Lampcms.com project
* @version Release: @package_version@
*
*
*/
namespace Lampcms;
/**
* Constants of reputation points per action performed
* as well as points required to perform certain actions
*
*
* @author Dmitri Snytkine
*
*/
class Points
{
/**
*
* Someone voted for your question
* @var int
*/
const UPVOTE_Q = 5;
/**
*
* Someone voted for your answer
* @var int
*/
const UPVOTE_A = 10;
/**
*
* Someone accepted your answer as best answer
* @var int
*/
const BEST_ANSWER = 15;
/**
*
* You accepted someones answer to your question
* @var int
*/
const ACCEPT_ANSWER = 2;
/**
*
* You down voted someone's question or answer
* @var int
*/
const CAST_DOWNVOTE = -1;
/**
*
* Someone voted down your answer or question
* @var int
*/
const DOWNVOTE = -2;
/**
* Your Q or A received marked as offensive 5 times
* @var int
*/
const OFFENSIVE = -100;
/**
* User shared (posted)
* Question or Answer to external site
* via API (like Twitter or Facebook)
* Enter description here ...
* @var unknown_type
*/
const SHARED_CONTENT = 5;
/**
* REPUTATION ACL LEVELS BELOW!
*/
/**
* need this many points to retag other
* user's question
*
* @var int
*/
const RETAG = 500;
/**
* Need this many points to upvote
*
* @var int
*/
const VOTE_UP = 15;
/**
* Need this many points to downvote
*
* @var int
*/
const VOTE_DOWN = 125;
/**
* Need this many point to edit
* Other user's content
* Enter description here ...
* @var int
*/
const EDIT = 2000;
/**
* Need this many points to
* Comment of other user's Question or Answer
*
* @var int
*/
const COMMENT = 25;
}