-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMailbox.php
More file actions
44 lines (42 loc) · 1.24 KB
/
Mailbox.php
File metadata and controls
44 lines (42 loc) · 1.24 KB
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
<!DOCTYPE html>
<!--
Project: Bitcraft Service Desk (An Open Source ITSM Web App)
Lead Devs: Joshua Nasiatka, Allen Perry, Eugene Duffy
For: Software Engineering
Dev Date: Spring 2016
Status: Staging; Idea Testing; Development
-->
<?php
include("modules/mainhead.php");
if ($myACL->hasPermission('hd_portal') != true) {
header("location: /");
exit;
}
?>
<html>
<?php
$page_title = 'Mailbox';
include_once 'modules/head.php'; ?>
<?php echo "<body class='hold-transition skin-$skin sidebar-mini'>"; ?>
<div class="wrapper">
<?php
// build the user interface
include_once 'modules/header.php';
include_once 'modules/left_sidebar.php';
include_once 'modules/mailbox/mailbox-ui.php';
include_once 'modules/footer.php';
include_once 'modules/control_sidebar.php';
?>
</div><!-- ./wrapper -->
<!-- REQUIRED JS SCRIPTS -->
<!-- jQuery -->
<script src="bower/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap -->
<script src="bower/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- AdminLTE App -->
<script src="bower/AdminLTE/dist/js/app.min.js"></script>
<script type="text/javascript">
$('ul#sdesk').toggle(200);
</script>
</body>
</html>