-
Notifications
You must be signed in to change notification settings - Fork 54
/
edit.php
71 lines (56 loc) · 1.89 KB
/
edit.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
<?php include 'config/declare.php'; ?>
<!-- a universal file that has all the classes included -->
<?php include 'config/classesGetter.php'; ?>
<!-- creating objects -->
<?php
$universal = new universal;
$avatar = new Avatar;
$tags = new tags;
$noti = new notifications;
$message = new message;
?>
<?php
if ($universal->isLoggedIn() == false) {
header('Location:'. DIR .'/welcome');
}
$session = $_SESSION['id'];
?>
<?php
// FOR DELETING EMPTY TAGS
$tags->filterTags();
?>
<?php
$title = "{$noti->titleNoti()} Edit profile (@".$universal->getUsernameFromSession().") • Hashtag";
$keywords = "Hashtag, Share and capture world's moments, share, capture, home";
$desc = "Hashtag lets you capture, follow, like and share world's moments in a better way and tell your story with photos, messages, posts and everything in between";
?>
<!-- including files for header of document -->
<?php include_once 'includes/header.php'; ?>
<?php include_once 'needs/heading.php'; ?>
<?php include_once 'needs/nav.php'; ?>
<div class="user_info" data-userid="<?php echo $session; ?>" data-sessionid="<?php echo $session; ?>" data-username="<?php echo $universal->getUsernameFromSession(); ?>"></div>
<div class="overlay"></div>
<div class="overlay-2"></div>
<div class="notify"><span></span></div>
<div class="badshah">
<?php include 'ajaxify/edit_profile/edit_profile.php'; ?>
</div>
<?php include 'needs/emojis.php'; ?>
<?php include_once 'needs/search.php'; ?>
<?php
// $help = array("You can press <b>Enter</b> to save");
// include_once 'needs/tip.php';
?>
<!-- including the footer of the document -->
<?php include_once 'includes/footer.php'; ?>
<script type="text/javascript">
$(function(){
$('.edit_un_text').focus();
$('.m_n_a').removeClass('active');
LinkIndicator('edit');
$('.edit_update > span').description({
extraTop: -5,
extraLeft: 5
});
});
</script>