-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
36 lines (35 loc) · 1023 Bytes
/
index.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
<?php
include ('include/header.php');
include ('include/views/menu.php');
// Inloggad
if(isset($_SESSION['email'])){
// Privat
if($_SESSION['company'] == 0){
// Admin
if($_SESSION['category'] == 1){
include ('include/views/admin.php');
include ('include/views/profile.php');
include ('include/views/news.php');
}
// Vanlig
else{
include ('include/views/tracking.php');
include ('include/views/searchTransport.php');
include ('include/views/profile.php');
include ('include/views/news.php');
}
}
else{ // Företag
include ('include/views/tracking.php');
include ('include/views/searchTransport.php');
include ('include/views/profile.php');
include ('include/views/news.php');
}
}
else{ // Utloggad
include ('include/views/searchTransport.php');
include ('include/views/about.php');
include ('include/views/dialogs.php');
}
include ('include/footer.php');
?>