-
Notifications
You must be signed in to change notification settings - Fork 54
/
hashtag.php
70 lines (56 loc) · 1.84 KB
/
hashtag.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
<?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;
$post = new post;
$settings = new settings;
$noti = new notifications;
$message = new message;
$hashtag = new hashtag;
?>
<?php
if ($universal->checkGet($_GET['tag']) == false) {
header('Location:'.DIR);
}
if ($universal->isLoggedIn() == false) {
header("Location:". DIR ."/login");
}
$tag = $_GET['tag'];
$tag = preg_replace("/[<> ]/", "", $tag);
$session = $_SESSION['id'];
?>
<?php
$title = "{$noti->titleNoti()} #$tag • Hashtag";
$keywords = "#$tag, Hashtag, Share and capture world's moments";
$desc = "View posts tagged with #$tag • Hashtag";
?>
<?php include_once 'includes/header.php'; ?>
<?php include_once 'needs/heading.php'; ?>
<?php include_once 'needs/nav.php'; ?>
<div class="user_info" data-tag='<?php echo $tag; ?>' data-userid='<?php echo $session; ?>'></div>
<div class="overlay"></div>
<div class="notify"><span></span></div>
<div class="badshah">
<div class="senapati">
<div class="hashtag_info inst">
<span>#<?php echo $tag; ?></span>
<span class="no_of_tag_peop"><?php echo $hashtag->noOfHashTagPosts($tag); ?> posts</span>
</div>
<div class="prajkumar view_rajkumar">
<?php $hashtag->hashtaggedPost($tag, "direct", "0"); ?>
</div>
<div class="srajkumar">
<?php $hashtag->usersHashtags($session); ?>
<?php $hashtag->popularHashtags(); ?>
</div>
</div>
</div>
<?php include_once 'needs/display.php'; ?>
<?php include_once 'needs/prompt.php'; ?>
<?php include_once 'needs/image_show.php'; ?>
<?php include_once 'needs/stickers.php'; ?>
<?php include_once 'needs/search.php'; ?>
<?php include_once 'includes/footer.php'; ?>