forked from buckyroberts/Social-Network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages_compose.php
49 lines (37 loc) · 1.41 KB
/
messages_compose.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
<?php
require(dirname(__FILE__) . '/includes/bootstrap.php');
//If the user is not logged in, redirect to the index page
if(!($userID = buckys_is_logged_in())){
buckys_redirect('/index.php');
}
if(isset($_GET['to']))
$receiver = BuckysUser::getUserData($_GET['to']);
if(isset($_GET['reply']))
$replyTo = BuckysMessage::getMessage($_GET['reply']);
if(isset($_POST['action'])){
//Check the user id is same with the current logged user id
if($_POST['userID'] != $userID){
echo 'Invalid Request!';
exit;
}
//Save Address
if($_POST['action'] == 'compose_message'){
//Show Results
header('Content-type: application/xml');
if(!BuckysMessage::composeMessage($_POST)){
render_result_xml(['status' => 'error', 'message' => buckys_get_messages()]);
}else{
render_result_xml(['status' => 'success', 'message' => buckys_get_messages()]);
}
exit;
}
}
buckys_enqueue_stylesheet('jquery-ui/jquery-ui.css');
buckys_enqueue_stylesheet('account.css');
buckys_enqueue_stylesheet('info.css');
buckys_enqueue_stylesheet('messages.css');
buckys_enqueue_javascript('jquery-ui.min.js');
buckys_enqueue_javascript('messages.js');
$TNB_GLOBALS['content'] = 'messages_compose';
$TNB_GLOBALS['title'] = "Compose Message - " . TNB_SITE_NAME;
require(DIR_FS_TEMPLATE . $TNB_GLOBALS['template'] . "/" . $TNB_GLOBALS['layout'] . ".php");