-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
138 lines (129 loc) · 5.86 KB
/
admin.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
include_once('./header.php');
canView('admin', Auth::getRole());
$posts = Post::all($connection);
if (isset($_GET['id'])) {
Post::deleteById($connection, $_GET['id']);
if (Auth::getRole() == 'admin') {
redirect('admin');
} else {
redirect('posts');
}
}
?>
<div class="row">
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="card card-primary">
<div class="card-statistic-4">
<div class="align-items-center justify-content-between">
<div class="row ">
<div class="col-12 pr-0 pt-3">
<div class=" card-content">
<h5 class="font-15"> Posters</h5>
<h2 class="mb-3 font-18"> <?php echo User::countUsers($connection); ?></h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="card card-success">
<div class="card-statistic-4">
<div class="align-items-center justify-content-between">
<div class="row ">
<div class="col-lg-12 pr-0 pt-3">
<div class="card-content">
<h5 class="font-15"> Published Post</h5>
<h2 class="mb-3 font-18"> <?php echo Post::countPublishedPost($connection); ?></h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="card card-warning">
<div class="card-statistic-4">
<div class="align-items-center justify-content-between">
<div class="row ">
<div class="col-12 pr-0 pt-3">
<div class="card-content">
<h5 class="font-15"> Pending Post</h5>
<h2 class="mb-3 font-18"> <?php echo Post::countPendingPost($connection); ?></h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="section">
<div class="section-body">
<div class="row">
<div class="col-12">
<div class="card mb-0">
<div class="card-body d-flex justify-content-between align-items-center">
<h4 class="m-0">Posts</h4>
<a href="./create_post.php" class="btn btn-outline-primary">Create Post</a>
</div>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-12">
<div class="card">
<div class="card-body">
<div class="table-responsive">
<table class="table table-striped" id="table-1">
<thead>
<tr>
<th>Author</th>
<th>Title</th>
<th>Category</th>
<th>Created At</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<?php foreach ($posts as $post) { ?>
<tr>
<td>
<a href="#">
<img alt="image" src="assets/img/users/user-1.png" class="rounded-circle" width="35" data-toggle="title" title="">
<span class="d-inline-block ml-1"><?php echo $post->author; ?></span>
</a>
</td>
<td><?php echo $post->title; ?>
<div class="table-links">
<a href="./view_post.php?id=<?php echo $post->id; ?>">View</a>
<div class="bullet"></div>
<a href="./update_post.php?id=<?php echo $post->id; ?>">Edit</a>
<div class="bullet"></div>
<a href="./admin.php?id=<?php echo $post->id; ?>" class="text-danger">Trash</a>
</div>
</td>
<td>
<a href="#"><?php echo $post->category; ?></a>
</td>
<td> <?php echo $post->created_at; ?> </td>
<td>
<div class="badge badge-<?php echo getStatusColor($post->status); ?> "><?php echo $post->status; ?></div>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<?php
include_once('./footer.php');
?>