-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotifications.php
89 lines (80 loc) · 2.87 KB
/
notifications.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
<?php
require "api/functions.php";
require "api/users/functions.php";
require "api/users/cookies.php";
if (!$user || !$user->id) redirect_to_home();
$notifications = $user->notifications();
db_query('UPDATE `nbhzvn_notifications` SET `is_unread` = 0 WHERE `user_id` = ?', $user->id);
?>
<!DOCTYPE html>
<html lang="zxx">
<head>
<?php
$title = "Thông Báo";
require "head.php";
?>
</head>
<body>
<!-- Header Section Begin -->
<header class="header">
<?php require "header.php" ?>
<link rel="stylesheet" href="/css/toastr.css" />
</header>
<!-- Header End -->
<!-- Breadcrumb Begin -->
<div class="breadcrumb-option">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="breadcrumb__links">
<a href="/"><i class="fa fa-home"></i> Trang Chủ</a>
<span>Thông Báo</span>
</div>
</div>
</div>
</div>
</div>
<!-- Breadcrumb End -->
<!-- Anime Section Begin -->
<section class="anime-details spad">
<div class="container">
<div class="login__form page">
<h3>Thông Báo</h3>
<div style="text-align: right">
<a href="javascript:void(0)" onclick="deleteNotification()" class="nbhzvn_btn"><span>Xoá Tất Cả Thông Báo</span></a>
</div><br>
<div id="notifications">
<?php
if (count($notifications)) {
$limit = 0;
foreach ($notifications as $notification) {
echo $notification->to_html();
$limit++;
if ($limit == 20) break;
}
}
else echo '<p>Bạn chưa có thông báo nào.</p>' ?>
?>
</div>
<?php if (count($notifications)) echo pagination(count($notifications)) ?>
</div>
</div>
</section>
<!-- Anime Section End -->
<!-- Footer Section Begin -->
<footer class="footer">
<?php require "footer.php" ?>
</footer>
<!-- Footer Section End -->
<!-- Js Plugins -->
<script src="/js/jquery-3.3.1.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/mixitup.min.js"></script>
<script src="/js/jquery.slicknav.js"></script>
<script src="/js/owl.carousel.min.js"></script>
<script src="/js/main.js"></script>
<script src="/js/toastr.js"></script>
<script src="/js/api.js"></script>
<script src="/js/notifications.js"></script>
</body>
</html>