forked from SynapseTechnologies/BuckysRoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info_links.php
executable file
·58 lines (45 loc) · 1.45 KB
/
info_links.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
<?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');
}
//Getting UserData from Id
$userData = BuckysUser::getUserLinks($userID);
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'] == 'save_links' )
{
$data = array();
for( $i = 0; $i < count($_POST['title']); $i++ )
{
$data[] = array(
'title' => $_POST['title'][$i],
'url' => $_POST['url'][$i],
'visibility' => $_POST['visibility'][$i]
);
}
//Update User Phone numbers
if( BuckysUser::updateUserLinks($userID, $data) )
{
echo 'Success';
}else{
echo $db->getLastError();
}
exit;
}
}
buckys_enqueue_stylesheet('account.css');
buckys_enqueue_stylesheet('info.css');
buckys_enqueue_javascript('info.js');
$BUCKYS_GLOBALS['content'] = 'info_links';
$BUCKYS_GLOBALS['title'] = "Info Links - BuckysRoom";
require(DIR_FS_TEMPLATE . $BUCKYS_GLOBALS['template'] . "/" . $BUCKYS_GLOBALS['layout'] . ".php");