-
Notifications
You must be signed in to change notification settings - Fork 56
/
motd.php
230 lines (201 loc) · 8.01 KB
/
motd.php
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?php
require_once 'header.php';
require_once 'libs/bbcode_lib.php';
valid_login($action_permission['insert']);
//#############################################################################
// ADD MOTD
//#############################################################################
function add_motd(&$sqlm)
{
global $output, $lang_motd, $lang_global, $action_permission;
valid_login($action_permission['insert']);
$output .= '
<center>
<form action="motd.php?action=do_add_motd" method="post" name="form">
<table class="top_hidden">
<tr>
<td colspan="3">';
bbcode_add_editor();
$output .= '
</td>
</tr>
<tr>
<td colspan="3">
<textarea id="msg" name="msg" rows="26" cols="97"></textarea>
</td>
</tr>
<tr>
<td>'.$lang_motd['post_rules'].'</td>
<td>';
makebutton($lang_motd['post_motd'], 'javascript:do_submit()" type="wrn', 230);
$output .= '
</td>
<td>';
makebutton($lang_global['back'], 'javascript:window.history.back()" type="def', 130);
$output .= '
</td>
</tr>
</table>
</form>
<br />
</center>';
}
//#############################################################################
// EDIT MOTD
//#############################################################################
function edit_motd(&$sqlm)
{
global $output, $lang_motd, $lang_global, $realm_id, $mmfpm_db, $action_permission;
valid_login($action_permission['update']);
$sqlm = new SQL;
$sqlm->connect($mmfpm_db['addr'], $mmfpm_db['user'], $mmfpm_db['pass'], $mmfpm_db['name']);
if(empty($_GET['id']))
redirect('motd.php?error=1');
$id = $sqlm->quote_smart($_GET['id']);
if(is_numeric($id));
else
redirect('motd.php?error=1');
$msg = $sqlm->result($sqlm->query('SELECT content FROM mm_motd WHERE id = '.$id.''), 0);
$output .= '
<center>
<form action="motd.php?action=do_edit_motd" method="post" name="form">
<input type="hidden" name="id" value="'.$id.'" />
<table class="top_hidden">
<tr>
<td colspan="3">';
unset($id);
bbcode_add_editor();
$output .= '
</td>
</tr>
<tr>
<td colspan="3">
<textarea id="msg" name="msg" rows="26" cols="97">'.$msg.'</textarea>
</td>
</tr>
<tr>
<td>'.$lang_motd['post_rules'].'</td>
<td>';
unset($msg);
makebutton($lang_motd['post_motd'], 'javascript:do_submit()" type="wrn', 230);
$output .= '
</td>
<td>';
makebutton($lang_global['back'], 'javascript:window.history.back()" type="def', 130);
$output .= '
</td>
</tr>
</table>
</form>
<br />
</center>';
}
//#####################################################################################################
// DO ADD MOTD
//#####################################################################################################
function do_add_motd(&$sqlm)
{
global $action_permission, $user_name, $realm_id, $mmfpm_db;
valid_login($action_permission['insert']);
$sqlm = new SQL;
$sqlm->connect($mmfpm_db['addr'], $mmfpm_db['user'], $mmfpm_db['pass'], $mmfpm_db['name']);
if (empty($_POST['msg']))
redirect('motd.php?error=1');
$msg = $sqlm->quote_smart($_POST['msg']);
if (4096 < strlen($msg))
redirect('motd.php?error=2');
$by = date('m/d/y H:i:s').' Posted by: '.$user_name;
$sqlm->query('INSERT INTO mm_motd (realmid, type, content) VALUES (\''.$realm_id.'\', \''.$by.'\', \''.$msg.'\')');
unset($by);
unset($msg);
redirect('index.php');
}
//#####################################################################################################
// DO EDIT MOTD
//#####################################################################################################
function do_edit_motd(&$sqlm)
{
global $action_permission, $user_name, $realm_id, $mmfpm_db;
valid_login($action_permission['update']);
$sqlm = new SQL;
$sqlm->connect($mmfpm_db['addr'], $mmfpm_db['user'], $mmfpm_db['pass'], $mmfpm_db['name']);
if (empty($_POST['msg']) || empty($_POST['id']))
redirect('motd.php?error=1');
$id = $sqlm->quote_smart($_POST['id']);
if(is_numeric($id));
else
redirect('motd.php?error=1');
$msg = $sqlm->quote_smart($_POST['msg']);
if (4096 < strlen($msg))
redirect('motd.php?error=2');
$by = $sqlm->result($sqlm->query('SELECT type FROM mm_motd WHERE id = '.$id.''), 0);
$by = split('<br />', $by, 2);
$by = $by[0].'<br />'.date('m/d/y H:i:s').' Edited by: '.$user_name;
$sqlm->query('UPDATE mm_motd SET realmid = \''.$realm_id.'\', type = \''.$by.'\', content = \''.$msg.'\' WHERE id = '.$id.'');
unset($by);
unset($msg);
unset($id);
redirect('index.php');
}
//#####################################################################################################
// DELETE MOTD
//#####################################################################################################
function delete_motd(&$sqlm)
{
global $action_permission, $realm_id, $mmfpm_db;
valid_login($action_permission['delete']);
$sqlm = new SQL;
$sqlm->connect($mmfpm_db['addr'], $mmfpm_db['user'], $mmfpm_db['pass'], $mmfpm_db['name']);
if (empty($_GET['id']))
redirect('index.php');
$id = $sqlm->quote_smart($_GET['id']);
if(is_numeric($id));
else
redirect('motd.php?error=1');
$sqlm->query('DELETE FROM mm_motd WHERE id ='.$id.'');
unset($id);
redirect('index.php');
}
//########################################################################################################################
// MAIN
//########################################################################################################################
$err = (isset($_GET['error'])) ? $_GET['error'] : NULL;
$lang_motd = lang_motd();
$output .= '
<div class="top">';
if (1 == $err)
$output .= '
<h1>
<font class="error">'.$lang_global['empty_fields'].'</font>
</h1>';
elseif (2 == $err)
$output .= '
<h1>
<font class="error">'.$lang_motd['err_max_len'].'</font>
</h1>';
elseif (3 == $err)
$output .= '
<h1>'.$lang_motd['edit_motd'].'</h1>';
else
$output .= '
<h1>'.$lang_motd['add_motd'].'</h1>';
unset($err);
$output .= '</div>';
$action = (isset($_GET['action'])) ? $_GET['action'] : NULL;
if ('delete_motd' == $action)
delete_motd($sqlm);
elseif ('add_motd' == $action)
add_motd($sqlm);
elseif ('do_add_motd' == $action)
do_add_motd($sqlm);
elseif ('edit_motd' == $action)
edit_motd($sqlm);
elseif ('do_edit_motd' == $action)
do_edit_motd($sqlm);
else
add_motd();
unset($action);
unset($action_permission);
unset($lang_motd);
require_once 'footer.php';
?>