-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmessages.php
More file actions
15 lines (14 loc) · 966 Bytes
/
messages.php
File metadata and controls
15 lines (14 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
class Message{
const network = "Test Net"; // Name which will be displayed on most pages
// Messages : their use is explained in the comment on their right
const noReason = "No reason"; // When there are no reason associated to a punishment
const globalPunishment = "global"; // When the punishment server is the whole network
const noData = "<span class='glyphicon glyphicon-remove'></span>"; // Content to insert when there are no data, e.g when a ban is not over the unbandate is not set
const state_ACTIVE = "<span class='label label-danger'>Active</span>"; // When a punishment is active
const state_ENDED = "<span class='label label-success'>Ended</span>"; // When a punishment is ended
const commentTypeWarning = "<span class='label label-warning'>Warning</span>"; // When a comment's type is an warning
const commentTypeNote = "<span class='label label-info'>Note</span>"; // When a comment's type is an note
const ipHidden = "IP address hidden";
}
?>