-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.php
executable file
·76 lines (61 loc) · 1.7 KB
/
dashboard.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
<?php
$style = "dashboard";
require_once('includes/include.php');
//User must be logged in
if (!$user->isLoggedIn){ $errors[]="You must be logged in to view the dashboard"; $_SESSION['errors']=$errors; header("Location: http://".$_SERVER['HTTP_HOST']); die(); }
if(empty($_GET))
{
header("Location: http://".$_SERVER['HTTP_HOST']);
die();
}
$project = new Project();
$project->getById($_GET['id']);
$pageTitle = "$project->title";
include 'includes/header.php';
include 'includes/navbar.php';
?>
<div class="container dashboard">
<div class="dashboard-nav">
<ul>
<?php
// This is your menu
// $items = array("dashboardHome", "edit", "roles", "updates","settings");
$items = array
(
array("dashboardHome","Dashboard"),
array("edit","Edit Project"),
array("roles","Team members"),
array("updates","Updates"),
array("settings","Settings")
);
foreach ($items as $item)
{
if (!isset($_GET['page']) && $item[0] == "dashboardHome")
{
echo '<li class="active"><a href="?id='.$project->projectId.'&page=' . $item[0] . '"> ' . $item[1] . '</a></li>';
$activePage = $item[0] . ".php";
}
else if (isset($_GET['page']) && $_GET['page'] == $item[0])
{
echo '<li class="active"><a href="?id='.$project->projectId.'&page=' . $item[0] . '"> ' . $item[1] . '</a></li>';
$activePage = $item[0] . ".php";
}
else
{
echo '<li><a href="?id='.$project->projectId.'&page=' . $item[0] . '"> ' . $item[1] . '</a></li>';
}
}
echo '</ul>
</div>
</div>';
// Include your page
if (isset($activePage))
{
include "includes/" . $activePage;
}
else
{
include "dashboardHome.php";
}
include 'includes/footer.php';
?>