-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.php
71 lines (58 loc) · 1.02 KB
/
util.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
function getStatusColor($status)
{
if ($status == 'pending') {
return 'warning';
}
if ($status == 'published') {
return 'primary';
}
if ($status == 'draft') {
return 'danger';
}
}
function redirect($path)
{
echo "<script> window.location.replace('./$path.php')</script>";
}
function clearError()
{
unset($_SESSION['hasError']);
}
function selected($a, $b)
{
if ($a == $b) {
echo 'selected';
}
}
function canView($for, $role)
{
if ($for != $role) {
redirect('forbidden');
}
}
class Auth
{
static function check()
{
if (!isset($_SESSION['user'])) {
redirect('index');
}
}
static function setUser($user)
{
$_SESSION['user'] = $user;
}
static function logout()
{
unset($_SESSION['user']);
}
static function user()
{
return $_SESSION['user'] ?? null;
}
static function getRole()
{
return $_SESSION['user']->user_type;
}
}